From: Peter Krempa Date: Thu, 23 Jan 2020 09:37:08 +0000 (+0100) Subject: tests: qemu: Remove prehistoric machine types from faked data tests X-Git-Tag: v6.1.0-rc1~401 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99eebcfe483c9b59caa19ea5b9de5e1dd8635b06;p=thirdparty%2Flibvirt.git tests: qemu: Remove prehistoric machine types from faked data tests qemu-5.0 will drop pre pc-1.0 machine types. Remove them from our faked capabilities test suite. If a feature depends on a machine type it shall be tested with real data and not with this hack. Signed-off-by: Peter Krempa Reviewed-by: Michal Privoznik --- diff --git a/tests/testutilsqemu.c b/tests/testutilsqemu.c index d44548f795..c25aa1f705 100644 --- a/tests/testutilsqemu.c +++ b/tests/testutilsqemu.c @@ -46,7 +46,7 @@ static const char *const i386_machines[] = { */ static const char *const x86_64_machines[] = { "pc", "isapc", "q35", - "pc-0.10", "pc-0.11", "pc-0.12", "pc-0.13", "pc-0.15", "pc-1.0", "pc-1.2", + "pc-1.0", "pc-1.2", "pc-i440fx-1.4", "pc-i440fx-2.1", "pc-i440fx-2.3", "pc-i440fx-2.5", "pc-i440fx-2.6", "pc-i440fx-2.9", "pc-i440fx-2.12", "pc-q35-2.3", "pc-q35-2.4", "pc-q35-2.5", "pc-q35-2.7", "pc-q35-2.10",