From 22c8efd32b4a20bdec3e8c7668c5c7037ae9f625 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 3 Apr 2023 13:24:41 +0200 Subject: [PATCH] testutilsqemu: Drop fake data for VIR_ARCH_I686 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Ján Tomko --- tests/testutilsqemu.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/testutilsqemu.c b/tests/testutilsqemu.c index db911d7c90..fdbad16abe 100644 --- a/tests/testutilsqemu.c +++ b/tests/testutilsqemu.c @@ -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", };