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, 9 'qos-test' : 60, 10 'qom-test' : 300, 11 'test-hmp' : 120, 12} 13 14qtests_generic = [ 15 'cdrom-test', 16 'device-introspect-test', 17 'machine-none-test', 18 'qmp-test', 19 'qmp-cmd-test', 20 'qom-test', 21 'test-hmp', 22 'qos-test', 23 'readconfig-test', 24 'netdev-socket', 25] 26if enable_modules 27 qtests_generic += [ 'modules-test' ] 28endif 29 30qtests_pci = \ 31 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) + \ 32 (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : []) 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'] : []) 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 \ 52 config_all_devices.has_key('CONFIG_ISA_IPMI_BT') ? ['ipmi-bt-test'] : []) + \ 53 (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) + \ 54 (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) + \ 55 (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) + \ 56 (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) + \ 57 (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \ 58 (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \ 59 (config_all_devices.has_key('CONFIG_LPC_ICH9') ? ['lpc-ich9-test'] : []) + \ 60 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \ 61 (config_all_devices.has_key('CONFIG_USB_UHCI') and \ 62 config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) + \ 63 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \ 64 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-test'] : []) + \ 65 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-swtpm-test'] : []) + \ 66 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-test'] : []) + \ 67 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-swtpm-test'] : []) + \ 68 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \ 69 (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \ 70 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \ 71 (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \ 72 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \ 73 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \ 74 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \ 75 (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \ 76 (config_host.has_key('CONFIG_POSIX') and \ 77 config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) + \ 78 (config_all_devices.has_key('CONFIG_PCIE_PORT') and \ 79 config_all_devices.has_key('CONFIG_VIRTIO_NET') and \ 80 config_all_devices.has_key('CONFIG_Q35') and \ 81 config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \ 82 slirp.found() ? ['virtio-net-failover'] : []) + \ 83 (unpack_edk2_blobs and \ 84 config_all_devices.has_key('CONFIG_HPET') and \ 85 config_all_devices.has_key('CONFIG_PARALLEL') ? ['bios-tables-test'] : []) + \ 86 qtests_pci + \ 87 qtests_cxl + \ 88 ['fdc-test', 89 'ide-test', 90 'hd-geo-test', 91 'boot-order-test', 92 'rtc-test', 93 'i440fx-test', 94 'fw_cfg-test', 95 'device-plug-test', 96 'drive_del-test', 97 'tco-test', 98 'cpu-plug-test', 99 'q35-test', 100 'vmgenid-test', 101 'migration-test', 102 'test-x86-cpuid-compat', 103 'numa-test' 104 ] 105 106if dbus_display and targetos != 'windows' 107 qtests_i386 += ['dbus-display-test'] 108endif 109 110dbus_daemon = find_program('dbus-daemon', required: false) 111if dbus_daemon.found() and gdbus_codegen.found() 112 # Temporarily disabled due to Patchew failures: 113 #qtests_i386 += ['dbus-vmstate-test'] 114 dbus_vmstate1 = custom_target('dbus-vmstate description', 115 output: ['dbus-vmstate1.h', 'dbus-vmstate1.c'], 116 input: meson.project_source_root() / 'backends/dbus-vmstate1.xml', 117 command: [gdbus_codegen, '@INPUT@', 118 '--interface-prefix', 'org.qemu', 119 '--generate-c-code', '@BASENAME@']).to_list() 120else 121 dbus_vmstate1 = [] 122endif 123 124qtests_x86_64 = qtests_i386 125 126qtests_alpha = ['boot-serial-test'] + \ 127 qtests_filter + \ 128 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 129 130qtests_avr = [ 'boot-serial-test' ] 131 132qtests_hppa = ['boot-serial-test'] + \ 133 qtests_filter + \ 134 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 135 136qtests_m68k = ['boot-serial-test'] + \ 137 qtests_filter 138 139qtests_microblaze = ['boot-serial-test'] + \ 140 qtests_filter 141 142qtests_microblazeel = qtests_microblaze 143 144qtests_mips = \ 145 qtests_filter + \ 146 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 147 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 148 149qtests_mipsel = qtests_mips 150qtests_mips64 = qtests_mips 151qtests_mips64el = qtests_mips 152 153qtests_ppc = \ 154 qtests_filter + \ 155 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 156 (config_all_devices.has_key('CONFIG_M48T59') ? ['m48t59-test'] : []) + \ 157 (config_all_devices.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) + \ 158 (config_all_devices.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) + \ 159 ['boot-order-test'] 160 161qtests_ppc64 = \ 162 qtests_ppc + \ 163 (config_all_devices.has_key('CONFIG_PSERIES') ? ['device-plug-test'] : []) + \ 164 (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-xscom-test'] : []) + \ 165 (config_all_devices.has_key('CONFIG_PSERIES') ? ['rtas-test'] : []) + \ 166 (slirp.found() ? ['pxe-test'] : []) + \ 167 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \ 168 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \ 169 qtests_pci + ['migration-test', 'numa-test', 'cpu-plug-test', 'drive_del-test'] 170 171qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) 172qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) 173 174qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] + \ 175 qtests_filter 176 177qtests_sparc64 = \ 178 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 179 qtests_filter + \ 180 ['prom-env-test', 'boot-serial-test'] 181 182qtests_npcm7xx = \ 183 ['npcm7xx_adc-test', 184 'npcm7xx_gpio-test', 185 'npcm7xx_pwm-test', 186 'npcm7xx_rng-test', 187 'npcm7xx_sdhci-test', 188 'npcm7xx_smbus-test', 189 'npcm7xx_timer-test', 190 'npcm7xx_watchdog_timer-test'] + \ 191 (slirp.found() ? ['npcm7xx_emc-test'] : []) 192qtests_aspeed = \ 193 ['aspeed_hace-test', 194 'aspeed_smc-test', 195 'aspeed_gpio-test'] 196qtests_arm = \ 197 (config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \ 198 (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \ 199 (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \ 200 (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \ 201 (config_all_devices.has_key('CONFIG_PFLASH_CFI02') and 202 config_all_devices.has_key('CONFIG_MUSICPAL') ? ['pflash-cfi02-test'] : []) + \ 203 (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \ 204 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \ 205 (config_all_devices.has_key('CONFIG_GENERIC_LOADER') ? ['hexloader-test'] : []) + \ 206 (config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \ 207 (config_all_devices.has_key('CONFIG_VEXPRESS') ? ['test-arm-mptimer'] : []) + \ 208 (config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \ 209 ['arm-cpu-features', 210 'boot-serial-test'] 211 212# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional 213qtests_aarch64 = \ 214 (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) + \ 215 (config_all.has_key('CONFIG_TCG') and config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? \ 216 ['tpm-tis-device-test', 'tpm-tis-device-swtpm-test'] : []) + \ 217 (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \ 218 (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test'] : []) + \ 219 (config_all.has_key('CONFIG_TCG') and \ 220 config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \ 221 ['arm-cpu-features', 222 'numa-test', 223 'boot-serial-test', 224 'migration-test'] 225 226qtests_s390x = \ 227 qtests_filter + \ 228 ['boot-serial-test', 229 'drive_del-test', 230 'device-plug-test', 231 'virtio-ccw-test', 232 'cpu-plug-test', 233 'migration-test'] 234 235qos_test_ss = ss.source_set() 236qos_test_ss.add( 237 'ac97-test.c', 238 'adm1272-test.c', 239 'ds1338-test.c', 240 'e1000-test.c', 241 'eepro100-test.c', 242 'es1370-test.c', 243 'ipoctal232-test.c', 244 'lsm303dlhc-mag-test.c', 245 'isl_pmbus_vr-test.c', 246 'max34451-test.c', 247 'megasas-test.c', 248 'ne2000-test.c', 249 'tulip-test.c', 250 'nvme-test.c', 251 'pca9552-test.c', 252 'pci-test.c', 253 'pcnet-test.c', 254 'sdhci-test.c', 255 'spapr-phb-test.c', 256 'tmp105-test.c', 257 'emc141x-test.c', 258 'usb-hcd-ohci-test.c', 259 'virtio-test.c', 260 'virtio-blk-test.c', 261 'virtio-net-test.c', 262 'virtio-rng-test.c', 263 'virtio-scsi-test.c', 264 'virtio-iommu-test.c', 265 'vmxnet3-test.c', 266 'igb-test.c', 267) 268 269if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL') 270 qos_test_ss.add(files('virtio-serial-test.c')) 271endif 272 273if config_host.has_key('CONFIG_POSIX') 274 qos_test_ss.add(files('e1000e-test.c')) 275endif 276if have_virtfs 277 qos_test_ss.add(files('virtio-9p-test.c')) 278endif 279if have_vhost_user 280 qos_test_ss.add(files('vhost-user-test.c')) 281endif 282if have_tools and have_vhost_user_blk_server 283 qos_test_ss.add(files('vhost-user-blk-test.c')) 284endif 285 286tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c'] 287 288migration_files = [files('migration-helpers.c')] 289if gnutls.found() 290 migration_files += [files('../unit/crypto-tls-psk-helpers.c'), gnutls] 291 292 if tasn1.found() 293 migration_files += [files('../unit/crypto-tls-x509-helpers.c', 294 '../unit/pkix_asn1_tab.c'), tasn1] 295 endif 296endif 297 298qtests = { 299 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 300 'cdrom-test': files('boot-sector.c'), 301 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, 302 'erst-test': files('erst-test.c'), 303 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'], 304 'migration-test': migration_files, 305 'pxe-test': files('boot-sector.c'), 306 'qos-test': [chardev, io, qos_test_ss.apply(config_host, strict: false).sources()], 307 'tpm-crb-swtpm-test': [io, tpmemu_files], 308 'tpm-crb-test': [io, tpmemu_files], 309 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 310 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'], 311 'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'], 312 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 313 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'], 314 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'), 315 'netdev-socket': files('netdev-socket.c', '../unit/socket-helpers.c'), 316} 317 318if vnc.found() 319 gvnc = dependency('gvnc-1.0', required: false) 320 if gvnc.found() 321 qtests += {'vnc-display-test': [gvnc]} 322 qtests_generic += [ 'vnc-display-test' ] 323 endif 324endif 325 326if dbus_display 327 qtests += {'dbus-display-test': [dbus_display1, gio]} 328endif 329 330qtest_executables = {} 331foreach dir : target_dirs 332 if not dir.endswith('-softmmu') 333 continue 334 endif 335 336 target_base = dir.split('-')[0] 337 qtest_emulator = emulators['qemu-system-' + target_base] 338 target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic 339 340 test_deps = roms 341 qtest_env = environment() 342 if have_tools 343 qtest_env.set('QTEST_QEMU_IMG', './qemu-img') 344 test_deps += [qemu_img] 345 endif 346 qtest_env.set('G_TEST_DBUS_DAEMON', meson.project_source_root() / 'tests/dbus-vmstate-daemon.sh') 347 qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base) 348 if have_tools and have_vhost_user_blk_server 349 qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon') 350 test_deps += [qsd] 351 endif 352 353 foreach test : target_qtests 354 # Executables are shared across targets, declare them only the first time we 355 # encounter them 356 if not qtest_executables.has_key(test) 357 src = [test + '.c'] 358 deps = [qemuutil, qos] 359 if test in qtests 360 # use a sourceset to quickly separate sources and deps 361 test_ss = ss.source_set() 362 test_ss.add(qtests[test]) 363 src += test_ss.all_sources() 364 deps += test_ss.all_dependencies() 365 endif 366 qtest_executables += { 367 test: executable(test, src, dependencies: deps) 368 } 369 endif 370 test('qtest-@0@/@1@'.format(target_base, test), 371 qtest_executables[test], 372 depends: [test_deps, qtest_emulator, emulator_modules], 373 env: qtest_env, 374 args: ['--tap', '-k'], 375 protocol: 'tap', 376 timeout: slow_qtests.get(test, 30), 377 priority: slow_qtests.get(test, 30), 378 suite: ['qtest', 'qtest-' + target_base]) 379 endforeach 380endforeach 381