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