1 # All QTests for now are POSIX-only, but the dependencies are
2 # really in libqtest, not in the testcases themselves.
3 if not config_host.has_key('CONFIG_POSIX')
9 'bios-tables-test' : 120,
10 'boot-serial-test' : 60,
11 'migration-test' : 150,
12 'npcm7xx_pwm-test': 150,
22 'device-introspect-test',
31 if config_host.has_key('CONFIG_MODULES')
32 qtests_generic += [ 'modules-test' ]
36 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) + \
37 (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : [])
40 (config_all_devices.has_key('CONFIG_CXL') ? ['cxl-test'] : [])
43 (slirp.found() ? ['test-netfilter'] : []) + \
44 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \
45 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-redirector'] : [])
48 (slirp.found() ? ['pxe-test'] : []) + \
50 (have_tools ? ['ahci-test'] : []) + \
51 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
52 (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) + \
53 (config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) + \
54 (config_host.has_key('CONFIG_LINUX') and \
55 config_all_devices.has_key('CONFIG_ISA_IPMI_BT') ? ['ipmi-bt-test'] : []) + \
56 (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) + \
57 (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) + \
58 (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) + \
59 (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) + \
60 (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) + \
61 (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) + \
62 (config_all_devices.has_key('CONFIG_LPC_ICH9') ? ['lpc-ich9-test'] : []) + \
63 (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) + \
64 (config_all_devices.has_key('CONFIG_USB_UHCI') and \
65 config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) + \
66 (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \
67 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-test'] : []) + \
68 (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-swtpm-test'] : []) + \
69 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-test'] : []) + \
70 (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-swtpm-test'] : []) + \
71 (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \
72 (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \
73 (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) + \
74 (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) + \
75 (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) + \
76 (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) + \
77 (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) + \
78 (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \
79 (config_host.has_key('CONFIG_POSIX') and \
80 config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) + \
81 (config_all_devices.has_key('CONFIG_VIRTIO_NET') and \
82 config_all_devices.has_key('CONFIG_Q35') and \
83 config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \
84 slirp.found() ? ['virtio-net-failover'] : []) + \
85 (unpack_edk2_blobs ? ['bios-tables-test'] : []) + \
102 'test-x86-cpuid-compat',
107 qtests_i386 += ['dbus-display-test']
110 dbus_daemon = find_program('dbus-daemon', required: false)
111 if 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()
124 qtests_x86_64 = qtests_i386
126 qtests_alpha = ['boot-serial-test'] + \
128 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
130 qtests_avr = [ 'boot-serial-test' ]
132 qtests_hppa = ['boot-serial-test'] + \
134 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
136 qtests_m68k = ['boot-serial-test'] + \
139 qtests_microblaze = ['boot-serial-test'] + \
142 qtests_microblazeel = qtests_microblaze
146 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
147 (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
149 qtests_mipsel = qtests_mips
150 qtests_mips64 = qtests_mips
151 qtests_mips64el = qtests_mips
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'] : []) + \
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']
171 qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
172 qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
174 qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] + \
178 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \
180 ['prom-env-test', 'boot-serial-test']
187 'npcm7xx_sdhci-test',
188 'npcm7xx_smbus-test',
189 'npcm7xx_timer-test',
190 'npcm7xx_watchdog_timer-test'] + \
191 (slirp.found() ? ['npcm7xx_emc-test'] : [])
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') ? ['pflash-cfi02-test'] : []) + \
202 (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
203 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
210 # TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional
212 (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) + \
213 (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-test'] : []) + \
214 (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-swtpm-test'] : []) + \
215 (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \
223 (slirp.found() ? ['pxe-test', 'test-netfilter'] : []) + \
224 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) + \
225 (config_host.has_key('CONFIG_POSIX') ? ['test-filter-redirector'] : []) + \
233 qos_test_ss = ss.source_set()
242 'lsm303dlhc-mag-test.c',
243 'isl_pmbus_vr-test.c',
256 'usb-hcd-ohci-test.c',
261 'virtio-scsi-test.c',
262 'virtio-serial-test.c',
263 'virtio-iommu-test.c',
266 if config_host.has_key('CONFIG_POSIX')
267 qos_test_ss.add(files('e1000e-test.c'))
270 qos_test_ss.add(files('virtio-9p-test.c'))
273 qos_test_ss.add(files('vhost-user-test.c'))
275 if have_tools and have_vhost_user_blk_server
276 qos_test_ss.add(files('vhost-user-blk-test.c'))
279 tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c']
281 migration_files = [files('migration-helpers.c')]
283 migration_files += [files('../unit/crypto-tls-psk-helpers.c'), gnutls]
286 migration_files += [files('../unit/crypto-tls-x509-helpers.c',
287 '../unit/pkix_asn1_tab.c'), tasn1]
292 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'],
293 'cdrom-test': files('boot-sector.c'),
294 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1,
295 'erst-test': files('erst-test.c'),
296 'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'],
297 'migration-test': migration_files,
298 'pxe-test': files('boot-sector.c'),
299 'qos-test': [chardev, io, qos_test_ss.apply(config_host, strict: false).sources()],
300 'tpm-crb-swtpm-test': [io, tpmemu_files],
301 'tpm-crb-test': [io, tpmemu_files],
302 'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
303 'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'],
304 'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
305 'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'],
306 'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'),
310 qtests += {'dbus-display-test': [dbus_display1, gio]}
313 qtest_executables = {}
314 foreach dir : target_dirs
315 if not dir.endswith('-softmmu')
319 target_base = dir.split('-')[0]
320 qtest_emulator = emulators['qemu-system-' + target_base]
321 target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic
324 qtest_env = environment()
326 qtest_env.set('QTEST_QEMU_IMG', './qemu-img')
327 test_deps += [qemu_img]
329 qtest_env.set('G_TEST_DBUS_DAEMON', meson.project_source_root() / 'tests/dbus-vmstate-daemon.sh')
330 qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base)
331 if have_tools and have_vhost_user_blk_server
332 qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon')
336 foreach test : target_qtests
337 # Executables are shared across targets, declare them only the first time we
339 if not qtest_executables.has_key(test)
341 deps = [qemuutil, qos]
343 # use a sourceset to quickly separate sources and deps
344 test_ss = ss.source_set()
345 test_ss.add(qtests[test])
346 src += test_ss.all_sources()
347 deps += test_ss.all_dependencies()
349 qtest_executables += {
350 test: executable(test, src, dependencies: deps)
353 test('qtest-@0@/@1@'.format(target_base, test),
354 qtest_executables[test],
355 depends: [test_deps, qtest_emulator, emulator_modules],
357 args: ['--tap', '-k'],
359 timeout: slow_qtests.get(test, 30),
360 priority: slow_qtests.get(test, 30),
361 suite: ['qtest', 'qtest-' + target_base])