mirror of https://gitee.com/openkylin/libvirt.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 <abologna@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
0770587d28
commit
64b615422e
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue