[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH v2 14/19] tests: do not run qom-test on all machines for ARM
From: |
Fabiano Rosas |
Subject: |
[RFC PATCH v2 14/19] tests: do not run qom-test on all machines for ARM KVM-only |
Date: |
Mon, 9 Jan 2023 19:42:27 -0300 |
From: Claudio Fontana <cfontana@suse.de>
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>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Cc: Thomas Huth <thuth@redhat.com>
Cc: Laurent Vivier <lvivier@redhat.com>
---
tests/qtest/qom-test.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/tests/qtest/qom-test.c b/tests/qtest/qom-test.c
index 13510bc349..aea969ef60 100644
--- a/tests/qtest/qom-test.c
+++ b/tests/qtest/qom-test.c
@@ -105,7 +105,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:
return g_test_run();
}
--
2.35.3
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, (continued)
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Fabiano Rosas, 2023/01/10
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Peter Maydell, 2023/01/10
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Fabiano Rosas, 2023/01/10
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Peter Maydell, 2023/01/10
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Claudio Fontana, 2023/01/11
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Thomas Huth, 2023/01/11
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Fabiano Rosas, 2023/01/11
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Richard Henderson, 2023/01/11
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Fabiano Rosas, 2023/01/12
- Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only, Peter Maydell, 2023/01/12
[RFC PATCH v2 14/19] tests: do not run qom-test on all machines for ARM KVM-only,
Fabiano Rosas <=
[RFC PATCH v2 15/19] tests: device-introspect-test: cope with ARM TCG-only devices, Fabiano Rosas, 2023/01/09
[RFC PATCH v2 16/19] tests/tcg: Do not build/run TCG tests if TCG is disabled, Fabiano Rosas, 2023/01/09
[RFC PATCH v2 17/19] target/arm: Move regime_using_lpae_format into internal.h, Fabiano Rosas, 2023/01/09
[RFC PATCH v2 18/19] cpu-defs.h: Expose CPUTLBEntryFull to non-TCG code, Fabiano Rosas, 2023/01/09
[RFC PATCH v2 19/19] target/arm: don't access TCG code when debugging with KVM, Fabiano Rosas, 2023/01/09