meson.build (2564dcbf510850b0de55d499a8b6c00d8730b9dd) | meson.build (1f2146f7ca0f04afc62c4a170ec78bd030f3e72f) |
---|---|
1slow_qtests = { 2 'ahci-test' : 60, 3 'bios-tables-test' : 120, 4 'boot-serial-test' : 60, 5 'migration-test' : 150, 6 'npcm7xx_pwm-test': 150, 7 'prom-env-test' : 60, 8 'pxe-test' : 60, --- 24 unchanged lines hidden (view full) --- 33 34qtests_cxl = \ 35 (config_all_devices.has_key('CONFIG_CXL') ? ['cxl-test'] : []) 36 37# FIXME: Get rid of get_option('default_devices') here and check 38# for the availability of the default NICs in the tests 39qtests_filter = \ 40 (get_option('default_devices') and slirp.found() ? ['test-netfilter'] : []) + \ | 1slow_qtests = { 2 'ahci-test' : 60, 3 'bios-tables-test' : 120, 4 'boot-serial-test' : 60, 5 'migration-test' : 150, 6 'npcm7xx_pwm-test': 150, 7 'prom-env-test' : 60, 8 'pxe-test' : 60, --- 24 unchanged lines hidden (view full) --- 33 34qtests_cxl = \ 35 (config_all_devices.has_key('CONFIG_CXL') ? ['cxl-test'] : []) 36 37# FIXME: Get rid of get_option('default_devices') here and check 38# for the availability of the default NICs in the tests 39qtests_filter = \ 40 (get_option('default_devices') and slirp.found() ? ['test-netfilter'] : []) + \ |
41 (get_option('default_devices') and config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \ 42 (get_option('default_devices') and config_host.has_key('CONFIG_POSIX') ? ['test-filter-redirector'] : []) | 41 (get_option('default_devices') and targetos != 'windows' ? ['test-filter-mirror'] : []) + \ 42 (get_option('default_devices') and targetos != 'windows' ? ['test-filter-redirector'] : []) |
43 44qtests_i386 = \ 45 (slirp.found() ? ['pxe-test'] : []) + \ 46 qtests_filter + \ 47 (have_tools ? ['ahci-test'] : []) + \ 48 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 49 (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \ 50 (config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) + \ | 43 44qtests_i386 = \ 45 (slirp.found() ? ['pxe-test'] : []) + \ 46 qtests_filter + \ 47 (have_tools ? ['ahci-test'] : []) + \ 48 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 49 (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \ 50 (config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) + \ |
51 (config_host.has_key('CONFIG_LINUX') and \ | 51 (targetos == 'linux' and \ |
52 config_all_devices.has_key('CONFIG_ISA_IPMI_BT') and 53 config_all_devices.has_key('CONFIG_IPMI_EXTERN') ? ['ipmi-bt-test'] : []) + \ 54 (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) + \ 55 (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) + \ 56 (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) + \ 57 (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) + \ 58 (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \ 59 (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \ --- 9 unchanged lines hidden (view full) --- 69 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \ 70 (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \ 71 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \ 72 (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \ 73 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \ 74 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \ 75 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \ 76 (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \ | 52 config_all_devices.has_key('CONFIG_ISA_IPMI_BT') and 53 config_all_devices.has_key('CONFIG_IPMI_EXTERN') ? ['ipmi-bt-test'] : []) + \ 54 (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) + \ 55 (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) + \ 56 (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) + \ 57 (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) + \ 58 (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \ 59 (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \ --- 9 unchanged lines hidden (view full) --- 69 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \ 70 (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \ 71 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \ 72 (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \ 73 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \ 74 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \ 75 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \ 76 (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \ |
77 (config_host.has_key('CONFIG_POSIX') and \ | 77 (targetos != 'windows' and \ |
78 config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) + \ 79 (config_all_devices.has_key('CONFIG_PCIE_PORT') and \ 80 config_all_devices.has_key('CONFIG_VIRTIO_NET') and \ 81 config_all_devices.has_key('CONFIG_Q35') and \ 82 config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \ 83 slirp.found() ? ['virtio-net-failover'] : []) + \ 84 (unpack_edk2_blobs and \ 85 config_all_devices.has_key('CONFIG_HPET') and \ --- 184 unchanged lines hidden (view full) --- 270 'vmxnet3-test.c', 271 'igb-test.c', 272) 273 274if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL') 275 qos_test_ss.add(files('virtio-serial-test.c')) 276endif 277 | 78 config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) + \ 79 (config_all_devices.has_key('CONFIG_PCIE_PORT') and \ 80 config_all_devices.has_key('CONFIG_VIRTIO_NET') and \ 81 config_all_devices.has_key('CONFIG_Q35') and \ 82 config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \ 83 slirp.found() ? ['virtio-net-failover'] : []) + \ 84 (unpack_edk2_blobs and \ 85 config_all_devices.has_key('CONFIG_HPET') and \ --- 184 unchanged lines hidden (view full) --- 270 'vmxnet3-test.c', 271 'igb-test.c', 272) 273 274if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL') 275 qos_test_ss.add(files('virtio-serial-test.c')) 276endif 277 |
278if config_host.has_key('CONFIG_POSIX') | 278if targetos != 'windows' |
279 qos_test_ss.add(files('e1000e-test.c')) 280endif 281if have_virtfs 282 qos_test_ss.add(files('virtio-9p-test.c')) 283endif 284if have_vhost_user 285 qos_test_ss.add(files('vhost-user-test.c')) 286endif --- 16 unchanged lines hidden (view full) --- 303qtests = { 304 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 305 'cdrom-test': files('boot-sector.c'), 306 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, 307 'erst-test': files('erst-test.c'), 308 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'], 309 'migration-test': migration_files, 310 'pxe-test': files('boot-sector.c'), | 279 qos_test_ss.add(files('e1000e-test.c')) 280endif 281if have_virtfs 282 qos_test_ss.add(files('virtio-9p-test.c')) 283endif 284if have_vhost_user 285 qos_test_ss.add(files('vhost-user-test.c')) 286endif --- 16 unchanged lines hidden (view full) --- 303qtests = { 304 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 305 'cdrom-test': files('boot-sector.c'), 306 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, 307 'erst-test': files('erst-test.c'), 308 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'], 309 'migration-test': migration_files, 310 'pxe-test': files('boot-sector.c'), |
311 'qos-test': [chardev, io, qos_test_ss.apply(config_host, strict: false).sources()], | 311 'qos-test': [chardev, io, qos_test_ss.apply(config_targetos, strict: false).sources()], |
312 'tpm-crb-swtpm-test': [io, tpmemu_files], 313 'tpm-crb-test': [io, tpmemu_files], 314 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 315 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'], 316 'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'], 317 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 318 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'], 319 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'), --- 66 unchanged lines hidden --- | 312 'tpm-crb-swtpm-test': [io, tpmemu_files], 313 'tpm-crb-test': [io, tpmemu_files], 314 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 315 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'], 316 'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'], 317 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 318 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'], 319 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'), --- 66 unchanged lines hidden --- |