]> git.proxmox.com Git - mirror_qemu.git/blame - tests/qtest/meson.build
Merge tag 'pull-maintainer-may24-160524-2' of https://gitlab.com/stsquad/qemu into...
[mirror_qemu.git] / tests / qtest / meson.build
CommitLineData
dc1d91ac 1slow_qtests = {
e8a12fe3 2 'aspeed_smc-test': 360,
4dfa7dc2
TH
3 'bios-tables-test' : 610,
4 'cdrom-test' : 610,
50dfa7ca 5 'device-introspect-test' : 720,
70717951 6 'migration-test' : 480,
d05328bc 7 'npcm7xx_pwm-test': 300,
2d1f1022 8 'npcm7xx_watchdog_timer-test': 120,
cb2218ab 9 'qom-test' : 900,
214652da 10 'stm32l4x5_usart-test' : 600,
f6d8d0e5 11 'test-hmp' : 240,
4dfa7dc2 12 'pxe-test': 610,
89115639 13 'prom-env-test': 360,
a1f5a47b 14 'boot-serial-test': 360,
f6bee9c2 15 'qos-test': 120,
4dfa7dc2 16 'vmgenid-test': 610,
dc1d91ac
PB
17}
18
b911c30c 19qtests_generic = [
a2ce7dbd
PB
20 'cdrom-test',
21 'device-introspect-test',
22 'machine-none-test',
23 'qmp-test',
24 'qmp-cmd-test',
25 'qom-test',
26 'test-hmp',
27 'qos-test',
f6a5f380 28 'readconfig-test',
c95031a1 29 'netdev-socket',
a2ce7dbd 30]
6002711c 31if enable_modules
a2ce7dbd
PB
32 qtests_generic += [ 'modules-test' ]
33endif
34
35qtests_pci = \
36 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) + \
37 (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : [])
38
33c47ab9
JC
39qtests_cxl = \
40 (config_all_devices.has_key('CONFIG_CXL') ? ['cxl-test'] : [])
41
973d97fe
TH
42# FIXME: Get rid of get_option('default_devices') here and check
43# for the availability of the default NICs in the tests
8bf5bb2e 44qtests_filter = \
973d97fe 45 (get_option('default_devices') and slirp.found() ? ['test-netfilter'] : []) + \
d0cda6f4
PB
46 (get_option('default_devices') and host_os != 'windows' ? ['test-filter-mirror'] : []) + \
47 (get_option('default_devices') and host_os != 'windows' ? ['test-filter-redirector'] : [])
8bf5bb2e 48
a2ce7dbd 49qtests_i386 = \
8bf5bb2e
BM
50 (slirp.found() ? ['pxe-test'] : []) + \
51 qtests_filter + \
a2ce7dbd
PB
52 (have_tools ? ['ahci-test'] : []) + \
53 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
54 (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \
a2ce7dbd 55 (config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) + \
d0cda6f4 56 (host_os == 'linux' and \
faae3437
TH
57 config_all_devices.has_key('CONFIG_ISA_IPMI_BT') and
58 config_all_devices.has_key('CONFIG_IPMI_EXTERN') ? ['ipmi-bt-test'] : []) + \
a2ce7dbd 59 (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) + \
677726ef 60 (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) + \
c0f82826 61 (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) + \
a2ce7dbd
PB
62 (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) + \
63 (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \
64 (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \
af05ffff 65 (config_all_devices.has_key('CONFIG_LPC_ICH9') ? ['lpc-ich9-test'] : []) + \
a2ce7dbd
PB
66 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \
67 (config_all_devices.has_key('CONFIG_USB_UHCI') and \
68 config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) + \
69 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \
70 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-test'] : []) + \
71 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-swtpm-test'] : []) + \
72 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-test'] : []) + \
73 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-swtpm-test'] : []) + \
74 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \
7d6a4f12 75 (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \
b911c30c
TH
76 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \
77 (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \
78 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \
79 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \
80 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \
ce94fa7a 81 (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \
d0cda6f4 82 (host_os != 'windows' and \
84efa8aa 83 config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) + \
56f7c6b1
FR
84 (config_all_devices.has_key('CONFIG_PCIE_PORT') and \
85 config_all_devices.has_key('CONFIG_VIRTIO_NET') and \
e32b96b5
LV
86 config_all_devices.has_key('CONFIG_Q35') and \
87 config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \
88 slirp.found() ? ['virtio-net-failover'] : []) + \
2e0def6d
FR
89 (unpack_edk2_blobs and \
90 config_all_devices.has_key('CONFIG_HPET') and \
91 config_all_devices.has_key('CONFIG_PARALLEL') ? ['bios-tables-test'] : []) + \
a2ce7dbd 92 qtests_pci + \
33c47ab9 93 qtests_cxl + \
a2ce7dbd
PB
94 ['fdc-test',
95 'ide-test',
a2ce7dbd
PB
96 'hd-geo-test',
97 'boot-order-test',
a2ce7dbd
PB
98 'rtc-test',
99 'i440fx-test',
100 'fw_cfg-test',
101 'device-plug-test',
102 'drive_del-test',
103 'tco-test',
104 'cpu-plug-test',
105 'q35-test',
106 'vmgenid-test',
107 'migration-test',
108 'test-x86-cpuid-compat',
8bf5bb2e 109 'numa-test'
31fb263c 110 ]
a2ce7dbd 111
306d7581 112if dbus_display
b4dd5b6a
MAL
113 qtests_i386 += ['dbus-display-test']
114endif
115
a2ce7dbd 116dbus_daemon = find_program('dbus-daemon', required: false)
7544060e 117if dbus_daemon.found() and gdbus_codegen.found()
a2ce7dbd
PB
118 # Temporarily disabled due to Patchew failures:
119 #qtests_i386 += ['dbus-vmstate-test']
120 dbus_vmstate1 = custom_target('dbus-vmstate description',
121 output: ['dbus-vmstate1.h', 'dbus-vmstate1.c'],
861aa79a 122 input: meson.project_source_root() / 'backends/dbus-vmstate1.xml',
7544060e 123 command: [gdbus_codegen, '@INPUT@',
a2ce7dbd
PB
124 '--interface-prefix', 'org.qemu',
125 '--generate-c-code', '@BASENAME@']).to_list()
126else
127 dbus_vmstate1 = []
128endif
129
130qtests_x86_64 = qtests_i386
131
31fb263c 132qtests_alpha = ['boot-serial-test'] + \
8bf5bb2e 133 qtests_filter + \
a2ce7dbd
PB
134 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
135
136qtests_avr = [ 'boot-serial-test' ]
137
31fb263c 138qtests_hppa = ['boot-serial-test'] + \
8bf5bb2e 139 qtests_filter + \
a2ce7dbd
PB
140 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
141
0d497106
BM
142qtests_loongarch64 = qtests_filter + \
143 ['boot-serial-test']
144
31fb263c 145qtests_m68k = ['boot-serial-test'] + \
8bf5bb2e 146 qtests_filter
31fb263c
TH
147
148qtests_microblaze = ['boot-serial-test'] + \
8bf5bb2e 149 qtests_filter
31fb263c 150
a2ce7dbd
PB
151qtests_microblazeel = qtests_microblaze
152
153qtests_mips = \
8bf5bb2e 154 qtests_filter + \
a2ce7dbd
PB
155 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
156 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
157
20516580
TH
158qtests_mipsel = qtests_mips
159qtests_mips64 = qtests_mips
160qtests_mips64el = qtests_mips
a2ce7dbd 161
a2ce7dbd 162qtests_ppc = \
8bf5bb2e 163 qtests_filter + \
a2ce7dbd
PB
164 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
165 (config_all_devices.has_key('CONFIG_M48T59') ? ['m48t59-test'] : []) + \
cfc1a889
PB
166 (config_all_accel.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) + \
167 (config_all_accel.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) + \
74884cb1 168 ['boot-order-test']
a2ce7dbd
PB
169
170qtests_ppc64 = \
a9697d09 171 qtests_ppc + \
a2ce7dbd
PB
172 (config_all_devices.has_key('CONFIG_PSERIES') ? ['device-plug-test'] : []) + \
173 (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-xscom-test'] : []) + \
4d2cd2d8 174 (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-host-i2c-test'] : []) + \
a2ce7dbd 175 (config_all_devices.has_key('CONFIG_PSERIES') ? ['rtas-test'] : []) + \
31fb263c 176 (slirp.found() ? ['pxe-test'] : []) + \
a2ce7dbd
PB
177 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \
178 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \
d8a18da5 179 qtests_pci + ['migration-test', 'numa-test', 'cpu-plug-test', 'drive_del-test']
a2ce7dbd
PB
180
181qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
182qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
183
31fb263c 184qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] + \
8bf5bb2e 185 qtests_filter
a2ce7dbd
PB
186
187qtests_sparc64 = \
188 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
8bf5bb2e 189 qtests_filter + \
a2ce7dbd
PB
190 ['prom-env-test', 'boot-serial-test']
191
326ccfe2 192qtests_npcm7xx = \
77c05b0b
HW
193 ['npcm7xx_adc-test',
194 'npcm7xx_gpio-test',
73314f13 195 'npcm7xx_pwm-test',
526dbbe0 196 'npcm7xx_rng-test',
4c579e15 197 'npcm7xx_sdhci-test',
d986bf72 198 'npcm7xx_smbus-test',
326ccfe2 199 'npcm7xx_timer-test',
bfe30b02
NE
200 'npcm7xx_watchdog_timer-test',
201 'npcm_gmac-test'] + \
e6646167 202 (slirp.found() ? ['npcm7xx_emc-test'] : [])
66609952 203qtests_aspeed = \
5fde7f10 204 ['aspeed_hace-test',
2ec06378
PD
205 'aspeed_smc-test',
206 'aspeed_gpio-test']
4cb44571
IV
207
208qtests_stm32l4x5 = \
a96bff61 209 ['stm32l4x5_exti-test',
13d6c073 210 'stm32l4x5_syscfg-test',
ddcc4b4b 211 'stm32l4x5_rcc-test',
214652da
AM
212 'stm32l4x5_gpio-test',
213 'stm32l4x5_usart-test']
4cb44571 214
a2ce7dbd 215qtests_arm = \
1eca58aa 216 (config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \
9bc064b5 217 (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
30858daf 218 (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \
9cf5eb29 219 (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \
e19d24e6
TH
220 (config_all_devices.has_key('CONFIG_PFLASH_CFI02') and
221 config_all_devices.has_key('CONFIG_MUSICPAL') ? ['pflash-cfi02-test'] : []) + \
66609952 222 (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
288c31e3 223 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
628f9008 224 (config_all_devices.has_key('CONFIG_GENERIC_LOADER') ? ['hexloader-test'] : []) + \
bcbbd95d 225 (config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
e19d24e6
TH
226 (config_all_devices.has_key('CONFIG_VEXPRESS') ? ['test-arm-mptimer'] : []) + \
227 (config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \
4cb44571 228 (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') ? qtests_stm32l4x5 : []) + \
45d8cdbd 229 (config_all_devices.has_key('CONFIG_FSI_APB2OPB_ASPEED') ? ['aspeed_fsi-test'] : []) + \
a0c325c4
IV
230 (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') and
231 config_all_devices.has_key('CONFIG_DM163')? ['dm163-test'] : []) + \
a2ce7dbd 232 ['arm-cpu-features',
628f9008 233 'boot-serial-test']
a2ce7dbd
PB
234
235# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional
236qtests_aarch64 = \
809954ef 237 (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) + \
cfc1a889 238 (config_all_accel.has_key('CONFIG_TCG') and config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? \
caf01d6a 239 ['tpm-tis-device-test', 'tpm-tis-device-swtpm-test'] : []) + \
bf22f151 240 (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \
1c98a821 241 (config_all_devices.has_key('CONFIG_XLNX_VERSAL') ? ['xlnx-canfd-test', 'xlnx-versal-trng-test'] : []) + \
0820e097 242 (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test', 'bcm2835-i2c-test'] : []) + \
cfc1a889 243 (config_all_accel.has_key('CONFIG_TCG') and \
b08dc0f1 244 config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
05889d15
AJ
245 ['arm-cpu-features',
246 'numa-test',
a2ce7dbd 247 'boot-serial-test',
db2237c4 248 'migration-test']
a2ce7dbd
PB
249
250qtests_s390x = \
973d97fe 251 qtests_filter + \
a2ce7dbd
PB
252 ['boot-serial-test',
253 'drive_del-test',
254 'device-plug-test',
255 'virtio-ccw-test',
256 'cpu-plug-test',
257 'migration-test']
258
2f849e9d
TW
259qtests_riscv32 = \
260 (config_all_devices.has_key('CONFIG_SIFIVE_E_AON') ? ['sifive-e-aon-watchdog-test'] : [])
261
a2ce7dbd
PB
262qos_test_ss = ss.source_set()
263qos_test_ss.add(
264 'ac97-test.c',
c0167539 265 'adm1272-test.c',
5861f5ab 266 'adm1266-test.c',
a2ce7dbd
PB
267 'ds1338-test.c',
268 'e1000-test.c',
a2ce7dbd
PB
269 'eepro100-test.c',
270 'es1370-test.c',
271 'ipoctal232-test.c',
4fd1ebb1 272 'lsm303dlhc-mag-test.c',
ffcdae67 273 'isl_pmbus_vr-test.c',
7649086f 274 'max34451-test.c',
a2ce7dbd
PB
275 'megasas-test.c',
276 'ne2000-test.c',
277 'tulip-test.c',
278 'nvme-test.c',
279 'pca9552-test.c',
280 'pci-test.c',
281 'pcnet-test.c',
282 'sdhci-test.c',
283 'spapr-phb-test.c',
284 'tmp105-test.c',
5e623f2b 285 'emc141x-test.c',
a2ce7dbd
PB
286 'usb-hcd-ohci-test.c',
287 'virtio-test.c',
288 'virtio-blk-test.c',
289 'virtio-net-test.c',
290 'virtio-rng-test.c',
291 'virtio-scsi-test.c',
becf8873 292 'virtio-iommu-test.c',
a2ce7dbd 293 'vmxnet3-test.c',
45cb69bb 294 'igb-test.c',
631c8726 295 'ufs-test.c',
a2ce7dbd 296)
b8a310a2
FR
297
298if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL')
299 qos_test_ss.add(files('virtio-serial-test.c'))
300endif
301
d0cda6f4 302if host_os != 'windows'
bc67e31c
BM
303 qos_test_ss.add(files('e1000e-test.c'))
304endif
2c9dce01
PB
305if have_virtfs
306 qos_test_ss.add(files('virtio-9p-test.c'))
307endif
43b6d7ee
PB
308if have_vhost_user
309 qos_test_ss.add(files('vhost-user-test.c'))
310endif
80695202
CX
311if have_tools and have_vhost_user_blk_server
312 qos_test_ss.add(files('vhost-user-blk-test.c'))
313endif
a2ce7dbd 314
da00d067
PB
315tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c']
316
58d25e97
DB
317migration_files = [files('migration-helpers.c')]
318if gnutls.found()
319 migration_files += [files('../unit/crypto-tls-psk-helpers.c'), gnutls]
d47b83b1
DB
320
321 if tasn1.found()
322 migration_files += [files('../unit/crypto-tls-x509-helpers.c',
323 '../unit/pkix_asn1_tab.c'), tasn1]
324 endif
58d25e97
DB
325endif
326
da00d067
PB
327qtests = {
328 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'],
a2ce7dbd 329 'cdrom-test': files('boot-sector.c'),
a2ce7dbd 330 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1,
bd24550e 331 'erst-test': files('erst-test.c'),
da00d067 332 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'],
58d25e97 333 'migration-test': migration_files,
da00d067 334 'pxe-test': files('boot-sector.c'),
1220f581 335 'qos-test': [chardev, io, qos_test_ss.apply({}).sources()],
da00d067
PB
336 'tpm-crb-swtpm-test': [io, tpmemu_files],
337 'tpm-crb-test': [io, tpmemu_files],
338 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
339 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'],
bcbbd95d 340 'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'],
da00d067
PB
341 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
342 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'],
6830e53b 343 'virtio-net-failover': files('migration-helpers.c'),
a2ce7dbd 344 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'),
c95031a1 345 'netdev-socket': files('netdev-socket.c', '../unit/socket-helpers.c'),
a2ce7dbd
PB
346}
347
4d1bc58d 348if vnc.found()
2564dcbf 349 gvnc = dependency('gvnc-1.0', method: 'pkg-config', required: false)
4d1bc58d
JQ
350 if gvnc.found()
351 qtests += {'vnc-display-test': [gvnc]}
352 qtests_generic += [ 'vnc-display-test' ]
353 endif
f5755989
MAL
354endif
355
b4dd5b6a 356if dbus_display
186acfba 357 qtests += {'dbus-display-test': [dbus_display1_dep, gio]}
b4dd5b6a
MAL
358endif
359
a2ce7dbd
PB
360qtest_executables = {}
361foreach dir : target_dirs
362 if not dir.endswith('-softmmu')
363 continue
364 endif
365
366 target_base = dir.split('-')[0]
fd5eef85 367 qtest_emulator = emulators['qemu-system-' + target_base]
da00d067 368 target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic
a2ce7dbd 369
809954ef 370 test_deps = roms
a2ce7dbd 371 qtest_env = environment()
fd5eef85
PB
372 if have_tools
373 qtest_env.set('QTEST_QEMU_IMG', './qemu-img')
374 test_deps += [qemu_img]
375 endif
654d6b04 376 qtest_env.set('G_TEST_DBUS_DAEMON', meson.project_source_root() / 'tests/dbus-vmstate-daemon.sh')
64ed6f92 377 qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base)
cc1838c2
TH
378 if have_tools and have_vhost_user_blk_server
379 qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon')
380 test_deps += [qsd]
381 endif
382
d864756e
FR
383 qtest_env.set('PYTHON', python.full_path())
384
da00d067 385 foreach test : target_qtests
a2ce7dbd
PB
386 # Executables are shared across targets, declare them only the first time we
387 # encounter them
388 if not qtest_executables.has_key(test)
da00d067
PB
389 src = [test + '.c']
390 deps = [qemuutil, qos]
391 if test in qtests
392 # use a sourceset to quickly separate sources and deps
393 test_ss = ss.source_set()
394 test_ss.add(qtests[test])
395 src += test_ss.all_sources()
396 deps += test_ss.all_dependencies()
397 endif
a2ce7dbd 398 qtest_executables += {
da00d067 399 test: executable(test, src, dependencies: deps)
a2ce7dbd
PB
400 }
401 endif
34f02e9f 402 test('qtest-@0@/@1@'.format(target_base, test),
a2ce7dbd 403 qtest_executables[test],
fb72176b 404 depends: [test_deps, qtest_emulator, emulator_modules],
a2ce7dbd
PB
405 env: qtest_env,
406 args: ['--tap', '-k'],
407 protocol: 'tap',
9eb95e5c
DB
408 timeout: slow_qtests.get(test, 60),
409 priority: slow_qtests.get(test, 60),
a2ce7dbd
PB
410 suite: ['qtest', 'qtest-' + target_base])
411 endforeach
412endforeach