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