1# All QTests for now are POSIX-only, but the dependencies are 2# really in libqtest, not in the testcases themselves. 3if not config_host.has_key('CONFIG_POSIX') 4 subdir_done() 5endif 6 7slow_qtests = { 8 'ahci-test' : 60, 9 'bios-tables-test' : 120, 10 'boot-serial-test' : 60, 11 'migration-test' : 150, 12 'npcm7xx_pwm-test': 150, 13 'prom-env-test' : 60, 14 'pxe-test' : 60, 15 'qos-test' : 60, 16 'qom-test' : 300, 17 'test-hmp' : 120, 18} 19 20qtests_generic = \ 21 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \ 22 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \ 23 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \ 24 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \ 25 [ 26 'cdrom-test', 27 'device-introspect-test', 28 'machine-none-test', 29 'qmp-test', 30 'qmp-cmd-test', 31 'qom-test', 32 'test-hmp', 33 'qos-test', 34] 35if config_host.has_key('CONFIG_MODULES') 36 qtests_generic += [ 'modules-test' ] 37endif 38 39qtests_pci = \ 40 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) + \ 41 (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : []) 42 43qtests_i386 = \ 44 (slirp.found() ? ['pxe-test', 'test-netfilter'] : []) + \ 45 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \ 46 (have_tools ? ['ahci-test'] : []) + \ 47 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 48 (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \ 49 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['test-filter-redirector'] : []) + \ 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_ESP_PCI') ? ['am53c974-test'] : []) + \ 71 qtests_pci + \ 72 ['fdc-test', 73 'ide-test', 74 'hd-geo-test', 75 'boot-order-test', 76 'bios-tables-test', 77 'rtc-test', 78 'i440fx-test', 79 'fw_cfg-test', 80 'device-plug-test', 81 'drive_del-test', 82 'tco-test', 83 'cpu-plug-test', 84 'q35-test', 85 'vmgenid-test', 86 'migration-test', 87 'test-x86-cpuid-compat', 88 'numa-test'] 89 90dbus_daemon = find_program('dbus-daemon', required: false) 91if dbus_daemon.found() and config_host.has_key('GDBUS_CODEGEN') 92 # Temporarily disabled due to Patchew failures: 93 #qtests_i386 += ['dbus-vmstate-test'] 94 dbus_vmstate1 = custom_target('dbus-vmstate description', 95 output: ['dbus-vmstate1.h', 'dbus-vmstate1.c'], 96 input: files('dbus-vmstate1.xml'), 97 command: [config_host['GDBUS_CODEGEN'], 98 '@INPUT@', 99 '--interface-prefix', 'org.qemu', 100 '--generate-c-code', '@BASENAME@']).to_list() 101else 102 dbus_vmstate1 = [] 103endif 104 105qtests_x86_64 = qtests_i386 106 107qtests_alpha = [ 'boot-serial-test' ] + \ 108 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 109 110qtests_avr = [ 'boot-serial-test' ] 111 112qtests_hppa = [ 'boot-serial-test' ] + \ 113 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 114 115qtests_m68k = [ 'boot-serial-test' ] 116qtests_microblaze = [ 'boot-serial-test' ] 117qtests_microblazeel = qtests_microblaze 118 119qtests_mips = \ 120 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 121 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 122 123qtests_mips64 = \ 124 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 125 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 126 127qtests_mips64el = \ 128 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 129 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) 130 131qtests_ppc = \ 132 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 133 (config_all_devices.has_key('CONFIG_M48T59') ? ['m48t59-test'] : []) + \ 134 ['boot-order-test', 'prom-env-test', 'boot-serial-test'] \ 135 136qtests_ppc64 = \ 137 (config_all_devices.has_key('CONFIG_PSERIES') ? ['device-plug-test'] : []) + \ 138 (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-xscom-test'] : []) + \ 139 (config_all_devices.has_key('CONFIG_PSERIES') ? ['rtas-test'] : []) + \ 140 (slirp.found() ? ['pxe-test', 'test-netfilter'] : []) + \ 141 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \ 142 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \ 143 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \ 144 qtests_pci + ['migration-test', 'numa-test', 'cpu-plug-test', 'drive_del-test'] 145 146qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) 147qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) 148 149qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] 150 151qtests_sparc64 = \ 152 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 153 ['prom-env-test', 'boot-serial-test'] 154 155qtests_npcm7xx = \ 156 ['npcm7xx_adc-test', 157 'npcm7xx_gpio-test', 158 'npcm7xx_pwm-test', 159 'npcm7xx_rng-test', 160 'npcm7xx_smbus-test', 161 'npcm7xx_timer-test', 162 'npcm7xx_watchdog_timer-test'] + \ 163 (slirp.found() ? ['npcm7xx_emc-test'] : []) 164qtests_aspeed = \ 165 ['aspeed_hace-test', 166 'aspeed_smc-test'] 167qtests_arm = \ 168 (config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \ 169 (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \ 170 (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \ 171 (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \ 172 (config_all_devices.has_key('CONFIG_PFLASH_CFI02') ? ['pflash-cfi02-test'] : []) + \ 173 (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \ 174 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \ 175 ['arm-cpu-features', 176 'microbit-test', 177 'test-arm-mptimer', 178 'boot-serial-test', 179 'hexloader-test'] 180 181# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional 182qtests_aarch64 = \ 183 (cpu != 'arm' ? ['bios-tables-test'] : []) + \ 184 (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-test'] : []) + \ 185 (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-swtpm-test'] : []) + \ 186 ['arm-cpu-features', 187 'numa-test', 188 'boot-serial-test', 189 'xlnx-can-test', 190 'fuzz-xlnx-dp-test', 191 'migration-test'] 192 193qtests_s390x = \ 194 (slirp.found() ? ['pxe-test', 'test-netfilter'] : []) + \ 195 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \ 196 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-redirector'] : []) + \ 197 ['boot-serial-test', 198 'drive_del-test', 199 'device-plug-test', 200 'virtio-ccw-test', 201 'cpu-plug-test', 202 'migration-test'] 203 204qos_test_ss = ss.source_set() 205qos_test_ss.add( 206 'ac97-test.c', 207 'adm1272-test.c', 208 'ds1338-test.c', 209 'e1000-test.c', 210 'e1000e-test.c', 211 'eepro100-test.c', 212 'es1370-test.c', 213 'ipoctal232-test.c', 214 'max34451-test.c', 215 'megasas-test.c', 216 'ne2000-test.c', 217 'tulip-test.c', 218 'nvme-test.c', 219 'pca9552-test.c', 220 'pci-test.c', 221 'pcnet-test.c', 222 'sdhci-test.c', 223 'spapr-phb-test.c', 224 'tmp105-test.c', 225 'emc141x-test.c', 226 'usb-hcd-ohci-test.c', 227 'virtio-test.c', 228 'virtio-blk-test.c', 229 'virtio-net-test.c', 230 'virtio-rng-test.c', 231 'virtio-scsi-test.c', 232 'virtio-serial-test.c', 233 'vmxnet3-test.c', 234) 235if have_virtfs 236 qos_test_ss.add(files('virtio-9p-test.c')) 237endif 238qos_test_ss.add(when: 'CONFIG_VHOST_USER', if_true: files('vhost-user-test.c')) 239if have_tools and have_vhost_user_blk_server 240 qos_test_ss.add(files('vhost-user-blk-test.c')) 241endif 242 243tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c'] 244 245qtests = { 246 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 247 'cdrom-test': files('boot-sector.c'), 248 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, 249 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'], 250 'migration-test': files('migration-helpers.c'), 251 'pxe-test': files('boot-sector.c'), 252 'qos-test': [chardev, io, qos_test_ss.apply(config_host, strict: false).sources()], 253 'tpm-crb-swtpm-test': [io, tpmemu_files], 254 'tpm-crb-test': [io, tpmemu_files], 255 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 256 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'], 257 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'], 258 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'], 259 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'), 260} 261 262qtest_executables = {} 263foreach dir : target_dirs 264 if not dir.endswith('-softmmu') 265 continue 266 endif 267 268 target_base = dir.split('-')[0] 269 qtest_emulator = emulators['qemu-system-' + target_base] 270 target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic 271 272 test_deps = [] 273 qtest_env = environment() 274 if have_tools 275 qtest_env.set('QTEST_QEMU_IMG', './qemu-img') 276 test_deps += [qemu_img] 277 endif 278 qtest_env.set('G_TEST_DBUS_DAEMON', meson.source_root() / 'tests/dbus-vmstate-daemon.sh') 279 qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base) 280 if have_tools and have_vhost_user_blk_server 281 qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon') 282 test_deps += [qsd] 283 endif 284 285 foreach test : target_qtests 286 # Executables are shared across targets, declare them only the first time we 287 # encounter them 288 if not qtest_executables.has_key(test) 289 src = [test + '.c'] 290 deps = [qemuutil, qos] 291 if test in qtests 292 # use a sourceset to quickly separate sources and deps 293 test_ss = ss.source_set() 294 test_ss.add(qtests[test]) 295 src += test_ss.all_sources() 296 deps += test_ss.all_dependencies() 297 endif 298 qtest_executables += { 299 test: executable(test, src, dependencies: deps) 300 } 301 endif 302 # FIXME: missing dependency on the emulator binary and qemu-img 303 test('qtest-@0@/@1@'.format(target_base, test), 304 qtest_executables[test], 305 depends: [test_deps, qtest_emulator], 306 env: qtest_env, 307 args: ['--tap', '-k'], 308 protocol: 'tap', 309 timeout: slow_qtests.get(test, 30), 310 priority: slow_qtests.get(test, 30), 311 suite: ['qtest', 'qtest-' + target_base]) 312 endforeach 313endforeach 314