[PATCH v2 04/23] qemuxml2argvtest: Fix broken invocation of "aarch64-tpm-wrong-model"

Peter Krempa posted 23 patches 4 years, 5 months ago
[PATCH v2 04/23] qemuxml2argvtest: Fix broken invocation of "aarch64-tpm-wrong-model"
Posted by Peter Krempa 4 years, 5 months ago
The string "aarch64" is passed in place of capability flags. We were lucky
that the pointer was always more than QEMU_CAPS_LAST.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 tests/qemuxml2argvtest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c
index 5977f77b86..6a3fa4c152 100644
--- a/tests/qemuxml2argvtest.c
+++ b/tests/qemuxml2argvtest.c
@@ -2571,7 +2571,7 @@ mymain(void)
     DO_TEST_CAPS_LATEST("tpm-emulator-tpm2-pstate");
     DO_TEST_CAPS_LATEST_PPC64("tpm-emulator-spapr");
     DO_TEST_CAPS_ARCH_LATEST("aarch64-tpm", "aarch64");
-    DO_TEST_PARSE_ERROR("aarch64-tpm-wrong-model", "aarch64");
+    DO_TEST_PARSE_ERROR("aarch64-tpm-wrong-model", NONE);

     DO_TEST_PARSE_ERROR("pci-domain-invalid", NONE);
     DO_TEST_PARSE_ERROR("pci-bus-invalid", NONE);
-- 
2.31.1