mirror of
https://github.com/qemu/qemu.git
synced 2026-02-04 05:35:39 +00:00
tests/qtest: Do not use versioned pc-q35-5.0 machine anymore
As of QEMU v10.2.0, the v5.0.0 machines are not usable anymore. Use the latest x86 q35 machine instead, otherwise we get: $ qemu-system-x86_64 -M pc-q35-5.0 qemu-system-x86_64: unsupported machine type: "pc-q35-5.0" Use -machine help to list supported machines See commita35f8577a0("include/hw: add macros for deprecation & removal of versioned machines") andf59ee04406("include/hw/boards: cope with dev/rc versions in deprecation checks") for explanation on automatically removed versioned machines. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Akihiko Odaki <odaki@rsg.ci.i.u-tokyo.ac.jp> Link: https://lore.kernel.org/qemu-devel/20251224085714.83169-1-philmd@linaro.org Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
committed by
Fabiano Rosas
parent
8dd5bceb2f
commit
9eef3854d3
@@ -17,7 +17,7 @@ static void test_lp1879531_eth_get_rss_ex_dst_addr(void)
|
||||
{
|
||||
QTestState *s;
|
||||
|
||||
s = qtest_init("-nographic -monitor none -serial none -M pc-q35-5.0");
|
||||
s = qtest_init("-nographic -monitor none -serial none -M q35");
|
||||
|
||||
qtest_outl(s, 0xcf8, 0x80001010);
|
||||
qtest_outl(s, 0xcfc, 0xe1020000);
|
||||
|
||||
@@ -15,7 +15,7 @@ static void test_lp1878642_pci_bus_get_irq_level_assert(void)
|
||||
{
|
||||
QTestState *s;
|
||||
|
||||
s = qtest_init("-M pc-q35-5.0 "
|
||||
s = qtest_init("-M q35 "
|
||||
"-nographic -monitor none -serial none");
|
||||
|
||||
qtest_outl(s, 0xcf8, 0x8000f840); /* PMBASE */
|
||||
|
||||
Reference in New Issue
Block a user