diff options
author | Thomas Huth <thuth@redhat.com> | 2021-12-01 11:43:45 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-12-15 08:08:59 +0100 |
commit | bf22f15114b2a1d5eefbcbc18f939d5006d77f72 (patch) | |
tree | 40bf754a6b228e7983c8e52a7753e1500e39c019 /tests | |
parent | a9697d0947798ec9cc8387308e1d353123639ec3 (diff) | |
download | qemu-bf22f15114b2a1d5eefbcbc18f939d5006d77f72.zip qemu-bf22f15114b2a1d5eefbcbc18f939d5006d77f72.tar.gz qemu-bf22f15114b2a1d5eefbcbc18f939d5006d77f72.tar.bz2 |
tests/qtest: Fence the tests that need xlnx-zcu102 with CONFIG_XLNX_ZYNQMP_ARM
The 'xlnx-can-test' and the 'fuzz-xlnx-dp-test' need the "xlnx-zcu102"
machine and thus should only be built and run if CONFIG_XLNX_ZYNQMP_ARM
is enabled.
Message-Id: <20211201104347.51922-3-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index 36ca175..9ff3eaf 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -188,11 +188,10 @@ qtests_aarch64 = \ (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) + \ (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-test'] : []) + \ (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-swtpm-test'] : []) + \ + (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \ ['arm-cpu-features', 'numa-test', 'boot-serial-test', - 'xlnx-can-test', - 'fuzz-xlnx-dp-test', 'migration-test'] qtests_s390x = \ |