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