[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/9] tests/qtest: Restrict xlnx-can-test to TCG builds
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 2/9] tests/qtest: Restrict xlnx-can-test to TCG builds |
Date: |
Fri, 5 Feb 2021 15:43:38 +0100 |
The Xilinx CAN controller test is uses the ZCU102 board which is
based on a ZynqMP SoC. In the default configuration - used by this
test - this SoC creates 2 Cortex R5F cores. Such cores are not
v8A archicture, thus can not be run under KVM. Therefore restrict
this test to TCG.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
Cc: Alistair Francis <alistair@alistair23.me>
Cc: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Cc: Vikram Garhwal <fnu.vikram@xilinx.com>
---
tests/qtest/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index c83bc211b6a..d8ebd5bf98e 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -159,10 +159,10 @@
(cpu != 'arm' ? ['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.has_key('CONFIG_TCG') ? ['xlnx-can-test'] : []) + \
['arm-cpu-features',
'numa-test',
'boot-serial-test',
- 'xlnx-can-test',
'migration-test']
qtests_s390x = \
--
2.26.2
- [PATCH 0/9] hw/arm/virt: Improve CPU help and fix testing under KVM, Philippe Mathieu-Daudé, 2021/02/05
- [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Philippe Mathieu-Daudé, 2021/02/05
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Andrew Jones, 2021/02/05
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Philippe Mathieu-Daudé, 2021/02/05
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Andrew Jones, 2021/02/05
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Philippe Mathieu-Daudé, 2021/02/05
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, Andrew Jones, 2021/02/06
- Re: [PATCH 1/9] tests/qtest/arm-cpu-features: Remove Cortex-A15 check, John Snow, 2021/02/08
[PATCH 2/9] tests/qtest: Restrict xlnx-can-test to TCG builds,
Philippe Mathieu-Daudé <=
[PATCH 3/9] tests/qtest/boot-serial-test: Test Virt machine with 'max', Philippe Mathieu-Daudé, 2021/02/05
[PATCH 4/9] tests/qtest/cdrom-test: Only allow the Virt machine under KVM, Philippe Mathieu-Daudé, 2021/02/05
[PATCH 5/9] hw/arm/virt: Improve CPU name in help message, Philippe Mathieu-Daudé, 2021/02/05