[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v6 32/38] tests: restrict TCG-only arm-cpu-features tests to TCG bu
From: |
Claudio Fontana |
Subject: |
[RFC v6 32/38] tests: restrict TCG-only arm-cpu-features tests to TCG builds |
Date: |
Thu, 11 Mar 2021 14:30:20 +0100 |
sve_tests_sve_max_vq_8,
sve_tests_sve_off,
test_query_cpu_model_expansion
all require TCG to run. Skip them for KVM-only builds.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
tests/qtest/arm-cpu-features.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/tests/qtest/arm-cpu-features.c b/tests/qtest/arm-cpu-features.c
index 8252b85bb8..e793bffcaa 100644
--- a/tests/qtest/arm-cpu-features.c
+++ b/tests/qtest/arm-cpu-features.c
@@ -352,6 +352,11 @@ static void sve_tests_sve_max_vq_8(const void *data)
{
QTestState *qts;
+#ifndef CONFIG_TCG
+ g_test_skip("TCG disabled, skipping tcg_only sve_tests_sve_max_vq_8");
+ return;
+#endif /* CONFIG_TCG */
+
qts = qtest_init(MACHINE "-cpu max,sve-max-vq=8");
assert_sve_vls(qts, "max", BIT_ULL(8) - 1, NULL);
@@ -387,6 +392,11 @@ static void sve_tests_sve_off(const void *data)
{
QTestState *qts;
+#ifndef CONFIG_TCG
+ g_test_skip("TCG disabled, skipping tcg_only sve_tests_sve_off");
+ return;
+#endif /* CONFIG_TCG */
+
qts = qtest_init(MACHINE "-cpu max,sve=off");
/* SVE is off, so the map should be empty. */
@@ -443,6 +453,11 @@ static void test_query_cpu_model_expansion(const void
*data)
{
QTestState *qts;
+#ifndef CONFIG_TCG
+ g_test_skip("TCG disabled, skipping tcg_only
test_query_cpu_model_expansion");
+ return;
+#endif /* CONFIG_TCG */
+
qts = qtest_init(MACHINE "-cpu max");
/* Test common query-cpu-model-expansion input validation */
--
2.26.2
- [RFC v6 23/38] target/arm: move sve_exception_el out of TCG helpers, (continued)
- [RFC v6 23/38] target/arm: move sve_exception_el out of TCG helpers, Claudio Fontana, 2021/03/11
- [RFC v6 25/38] target/arm: cpu: fix style, Claudio Fontana, 2021/03/11
- [RFC v6 24/38] target/arm: refactor exception and cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 26/38] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), Claudio Fontana, 2021/03/11
- [RFC v6 20/38] target/arm: move arm_cpu_list to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 18/38] target/arm: move sve_zcr_len_for_el to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 21/38] target/arm: move aarch64_sync_32_to_64 (and vv) to cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 27/38] target/arm: remove kvm include file for PSCI and arm-powerctl, Claudio Fontana, 2021/03/11
- [RFC v6 22/38] target/arm: split a15 cpu model and 32bit class functions to cpu32.c, Claudio Fontana, 2021/03/11
- [RFC v6 28/38] target/arm: move kvm-const.h, kvm.c, kvm64.c, kvm_arm.h to kvm/, Claudio Fontana, 2021/03/11
- [RFC v6 32/38] tests: restrict TCG-only arm-cpu-features tests to TCG builds,
Claudio Fontana <=
- [RFC v6 29/38] target/arm: cleanup cpu includes, Claudio Fontana, 2021/03/11
- [RFC v6 31/38] tests/qtest: skip bios-tables-test test_acpi_oem_fields_virt for KVM, Claudio Fontana, 2021/03/11
- [RFC v6 35/38] tests: do not run qom-test on all machines for ARM KVM-only, Claudio Fontana, 2021/03/11
- [RFC v6 30/38] target/arm: remove broad "else" statements when checking accels, Claudio Fontana, 2021/03/11
- [RFC v6 38/38] target/arm: move kvm cpu properties setting to kvm-cpu, Claudio Fontana, 2021/03/11
- [RFC v6 36/38] Revert "target/arm: Restrict v8M IDAU to TCG", Claudio Fontana, 2021/03/11
- [RFC v6 34/38] tests: device-introspect-test: cope with ARM TCG-only devices, Claudio Fontana, 2021/03/11
- [RFC v6 37/38] kvm: create kvm cpu accel class, Claudio Fontana, 2021/03/11
- [RFC v6 33/38] tests: do not run test-hmp on all machines for ARM KVM-only, Claudio Fontana, 2021/03/11