From: Peter Krempa Date: Thu, 2 Mar 2023 15:58:06 +0000 (+0100) Subject: testutilsqemu: Drop support for fake-caps testing of 'riscv64' architecture X-Git-Tag: v9.2.0-rc1~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53909a5a74e85d3e16c0b7170634b1854ca815fb;p=thirdparty%2Flibvirt.git testutilsqemu: Drop support for fake-caps testing of 'riscv64' architecture All tests were converted to use real capabilities so there's no need to support the infrastructure for fake tests. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/tests/testutilsqemu.c b/tests/testutilsqemu.c index 08ee2f91f6..8dec728404 100644 --- a/tests/testutilsqemu.c +++ b/tests/testutilsqemu.c @@ -32,7 +32,6 @@ static const char *qemu_emulators[VIR_ARCH_LAST] = { [VIR_ARCH_ARMV7L] = "/usr/bin/qemu-system-arm", [VIR_ARCH_PPC64] = "/usr/bin/qemu-system-ppc64", [VIR_ARCH_PPC] = "/usr/bin/qemu-system-ppc", - [VIR_ARCH_RISCV64] = "/usr/bin/qemu-system-riscv64", [VIR_ARCH_S390X] = "/usr/bin/qemu-system-s390x", }; @@ -60,9 +59,6 @@ static const char *const ppc64_machines[] = { static const char *const ppc_machines[] = { "ppce500", NULL }; -static const char *const riscv64_machines[] = { - "virt", NULL -}; static const char *const s390x_machines[] = { "s390-ccw-virtio", NULL }; @@ -74,7 +70,6 @@ static const char *const *qemu_machines[VIR_ARCH_LAST] = { [VIR_ARCH_ARMV7L] = arm_machines, [VIR_ARCH_PPC64] = ppc64_machines, [VIR_ARCH_PPC] = ppc_machines, - [VIR_ARCH_RISCV64] = riscv64_machines, [VIR_ARCH_S390X] = s390x_machines, };