]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
testutilsqemu: Drop fake machine capability data for 'x86_64'
authorPeter Krempa <pkrempa@redhat.com>
Mon, 3 Apr 2023 11:35:18 +0000 (13:35 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 6 Sep 2023 12:09:45 +0000 (14:09 +0200)
Now that all tests were converted to use real capabilities we can drop
x86_64 from the tooling to create fake capabilities.

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

index 8996f846bc6ef79be2c4be3241bf1ffee0722c37..cde633e075d13b3c6b4590b6d0901e1d69781045 100644 (file)
@@ -27,21 +27,15 @@ static virCPUDef *cpuPower10;
 
 
 static const char *qemu_emulators[VIR_ARCH_LAST] = {
-    [VIR_ARCH_X86_64] = "/usr/bin/qemu-system-x86_64",
-};
-
-static const char *const x86_64_machines[] = {
-    "pc", "q35", NULL
 };
 
 static const char *const *qemu_machines[VIR_ARCH_LAST] = {
-    [VIR_ARCH_X86_64] = x86_64_machines,
 };
 
 static const char *qemu_default_ram_id[VIR_ARCH_LAST] = {
-    [VIR_ARCH_X86_64] = "pc.ram",
 };
 
+
 char *
 virFindFileInPath(const char *file)
 {