From: Andrea Bolognani Date: Wed, 5 Sep 2018 11:04:08 +0000 (+0200) Subject: tests: Prepare to use DO_TEST_CAPS_ARCH_LATEST() more X-Git-Tag: v4.8.0-rc1~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64b615422e76628f32e4514f2b8106ab089806b2;p=thirdparty%2Flibvirt.git tests: Prepare to use DO_TEST_CAPS_ARCH_LATEST() more We can add aarch64, ppc64 and riscv64 to the list of supported architectures for the macro, since we have capabilities data for all of them. Signed-off-by: Andrea Bolognani Reviewed-by: Ján Tomko --- diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c index 144e595310..cc0e5f04bf 100644 --- a/tests/qemuxml2argvtest.c +++ b/tests/qemuxml2argvtest.c @@ -656,7 +656,13 @@ mymain(void) int ret = 0, i; char *fakerootdir; bool skipLegacyCPUs = false; - const char *archs[] = { "x86_64", "s390x" }; + const char *archs[] = { + "aarch64", + "ppc64", + "riscv64", + "s390x", + "x86_64", + }; virHashTablePtr capslatest = NULL; if (VIR_STRDUP_QUIET(fakerootdir, FAKEROOTDIRTEMPLATE) < 0) {