mirror of https://github.com/xemu-project/xemu.git
tests/qtest/meson.build: Add more CONFIG switches checks for the x86 tests
When configuring QEMU with "--without-default-devices", currently a lot of the x86 qtests are failing since they silently assume that a certain device or the i440fx pc machine is available. Add more checks for CONFIG switches here to not run those tests in case the corresponding device is not available. Message-ID: <20240905191434.694440-6-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
d98894d845
commit
f69880a0e9
|
@ -50,7 +50,15 @@ qtests_filter = \
|
|||
qtests_i386 = \
|
||||
(slirp.found() ? ['pxe-test'] : []) + \
|
||||
qtests_filter + \
|
||||
(have_tools ? ['ahci-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_ACPI_VMGENID') ? ['vmgenid-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_AHCI_ICH9') and have_tools ? ['ahci-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_AHCI_ICH9') ? ['tco-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_FDC_ISA') ? ['fdc-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_I440FX') ? ['fw_cfg-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_I440FX') ? ['i440fx-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_I440FX') ? ['ide-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_I440FX') ? ['numa-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_I440FX') ? ['test-x86-cpuid-compat'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) + \
|
||||
|
@ -64,6 +72,7 @@ qtests_i386 = \
|
|||
(config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_LPC_ICH9') ? ['lpc-ich9-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_MC146818RTC') ? ['rtc-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_USB_UHCI') and \
|
||||
config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) + \
|
||||
|
@ -77,6 +86,7 @@ qtests_i386 = \
|
|||
(config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_Q35') ? ['q35-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \
|
||||
|
@ -92,25 +102,16 @@ qtests_i386 = \
|
|||
config_all_devices.has_key('CONFIG_PARALLEL') ? ['bios-tables-test'] : []) + \
|
||||
qtests_pci + \
|
||||
qtests_cxl + \
|
||||
['fdc-test',
|
||||
'ide-test',
|
||||
[
|
||||
'hd-geo-test',
|
||||
'boot-order-test',
|
||||
'rtc-test',
|
||||
'i440fx-test',
|
||||
'fw_cfg-test',
|
||||
'device-plug-test',
|
||||
'drive_del-test',
|
||||
'tco-test',
|
||||
'cpu-plug-test',
|
||||
'q35-test',
|
||||
'vmgenid-test',
|
||||
'migration-test',
|
||||
'test-x86-cpuid-compat',
|
||||
'numa-test'
|
||||
]
|
||||
|
||||
if dbus_display
|
||||
if dbus_display and config_all_devices.has_key('CONFIG_VGA')
|
||||
qtests_i386 += ['dbus-display-test']
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue