]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
testutilsqemu: Drop fake data for VIR_ARCH_I686
authorPeter Krempa <pkrempa@redhat.com>
Mon, 3 Apr 2023 11:24:41 +0000 (13:24 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Tue, 22 Aug 2023 12:04:40 +0000 (14:04 +0200)
There are no more tests depending on '/usr/bin/qemu-system-i386' thus we
don't have to carry the data any more.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
tests/testutilsqemu.c

index db911d7c90fd98b67a2508b07ff4e9caaa0add6e..fdbad16abe92be31061b833d92d037919bb006ee 100644 (file)
@@ -27,25 +27,18 @@ static virCPUDef *cpuPower10;
 
 
 static const char *qemu_emulators[VIR_ARCH_LAST] = {
-    [VIR_ARCH_I686] = "/usr/bin/qemu-system-i386",
     [VIR_ARCH_X86_64] = "/usr/bin/qemu-system-x86_64",
 };
 
-static const char *const i386_machines[] = {
-    "pc", NULL
-};
-
 static const char *const x86_64_machines[] = {
     "pc", "q35", NULL
 };
 
 static const char *const *qemu_machines[VIR_ARCH_LAST] = {
-    [VIR_ARCH_I686] = i386_machines,
     [VIR_ARCH_X86_64] = x86_64_machines,
 };
 
 static const char *qemu_default_ram_id[VIR_ARCH_LAST] = {
-    [VIR_ARCH_I686] = "pc.ram",
     [VIR_ARCH_X86_64] = "pc.ram",
 };