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