[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v12 42/65] tests: do not run test-hmp on all machines for ARM KVM-o
From: |
Claudio Fontana |
Subject: |
[RFC v12 42/65] tests: do not run test-hmp on all machines for ARM KVM-only |
Date: |
Fri, 26 Mar 2021 20:36:38 +0100 |
on ARM we currently list and build all machines, even when
building KVM-only, without TCG.
Until we fix this (and we only list and build machines that are
compatible with KVM), only test specifically using the "virt"
machine in this case.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Cc: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
tests/qtest/test-hmp.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/tests/qtest/test-hmp.c b/tests/qtest/test-hmp.c
index 413eb95d2a..1d4b4f2f0e 100644
--- a/tests/qtest/test-hmp.c
+++ b/tests/qtest/test-hmp.c
@@ -157,8 +157,28 @@ int main(int argc, char **argv)
g_test_init(&argc, &argv, NULL);
+ /*
+ * XXX currently we build also boards for ARM that are incompatible with
KVM.
+ * We therefore need to check this explicitly, and only test virt for
kvm-only
+ * arm builds.
+ * After we do the work of Kconfig etc to ensure that only KVM-compatible
boards
+ * are built for the kvm-only build, we could remove this.
+ */
+#ifndef CONFIG_TCG
+ {
+ const char *arch = qtest_get_arch();
+
+ if (strcmp(arch, "arm") == 0 || strcmp(arch, "aarch64") == 0) {
+ add_machine_test_case("virt");
+ goto add_machine_test_done;
+ }
+ }
+#endif /* !CONFIG_TCG */
+
qtest_cb_for_every_machine(add_machine_test_case, g_test_quick());
+ goto add_machine_test_done;
+ add_machine_test_done:
/* as none machine has no memory by default, add a test case with memory */
qtest_add_data_func("hmp/none+2MB", g_strdup("none -m 2"), test_machine);
--
2.26.2
- Re: [RFC v12 36/65] target/arm: move kvm-const.h, kvm.c, kvm64.c, kvm_arm.h to kvm/, (continued)
- [RFC v12 33/65] target/arm: move cpu_tcg to tcg/tcg-cpu-models.c, Claudio Fontana, 2021/03/26
- [RFC v12 41/65] tests: restrict TCG-only arm-cpu-features tests to TCG builds, Claudio Fontana, 2021/03/26
- [RFC v12 27/65] target/arm: split a15 cpu model and 32bit class functions to cpu32.c, Claudio Fontana, 2021/03/26
- [RFC v12 34/65] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), Claudio Fontana, 2021/03/26
- [RFC v12 37/65] target/arm: cleanup cpu includes, Claudio Fontana, 2021/03/26
- [RFC v12 42/65] tests: do not run test-hmp on all machines for ARM KVM-only,
Claudio Fontana <=
- [RFC v12 44/65] tests: do not run qom-test on all machines for ARM KVM-only, Claudio Fontana, 2021/03/26
- [RFC v12 47/65] target/arm: move kvm post init initialization to kvm cpu accel, Claudio Fontana, 2021/03/26
- [RFC v12 43/65] tests: device-introspect-test: cope with ARM TCG-only devices, Claudio Fontana, 2021/03/26
- [RFC v12 48/65] target/arm: add tcg cpu accel class, Claudio Fontana, 2021/03/26
- [RFC v12 45/65] Revert "target/arm: Restrict v8M IDAU to TCG", Claudio Fontana, 2021/03/26