gitlab: fix inconsistent indentation
[qemu/ar7.git] / tests / qtest / meson.build
blobba6ecaed32564f57e2cddb260795e94d04d31ab8
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')
4   subdir_done()
5 endif
7 qtests_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',
17 if config_host.has_key('CONFIG_MODULES')
18   qtests_generic += [ 'modules-test' ]
19 endif
21 qtests_pci = \
22   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) +                  \
23   (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : [])
25 qtests_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']
70 dbus_daemon = find_program('dbus-daemon', required: false)
71 if 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()
81 else
82   dbus_vmstate1 = []
83 endif
85 qtests_x86_64 = qtests_i386
87 qtests_alpha = [ 'boot-serial-test' ] +                                                      \
88   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
90 qtests_avr = [ 'boot-serial-test' ]
92 qtests_hppa = [ 'boot-serial-test' ] +                                                       \
93   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
95 qtests_m68k = [ 'boot-serial-test' ]
96 qtests_microblaze = [ 'boot-serial-test' ]
97 qtests_microblazeel = qtests_microblaze
99 qtests_mips = \
100   (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
101   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
103 qtests_mips64 = \
104   (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
105   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
107 qtests_mips64el = \
108   (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
109   (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
111 qtests_moxie = [ 'boot-serial-test' ]
113 qtests_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']                 \
118 qtests_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']
128 qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
129 qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
131 qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test']
133 qtests_sparc64 = \
134   (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
135   ['prom-env-test', 'boot-serial-test']
137 qtests_npcm7xx = \
138   ['npcm7xx_adc-test',
139    'npcm7xx_gpio-test',
140    'npcm7xx_pwm-test',
141    'npcm7xx_rng-test',
142    'npcm7xx_smbus-test',
143    'npcm7xx_timer-test',
144    'npcm7xx_watchdog_timer-test']
145 qtests_arm = \
146   (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
147   (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \
148   (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \
149   (config_all_devices.has_key('CONFIG_PFLASH_CFI02') ? ['pflash-cfi02-test'] : []) +         \
150   (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
151   ['arm-cpu-features',
152    'microbit-test',
153    'm25p80-test',
154    'test-arm-mptimer',
155    'boot-serial-test',
156    'hexloader-test']
158 # TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional
159 qtests_aarch64 = \
160   (cpu != 'arm' ? ['bios-tables-test'] : []) +                                                  \
161   (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-test'] : []) +        \
162   (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-swtpm-test'] : []) +  \
163   ['arm-cpu-features',
164    'numa-test',
165    'boot-serial-test',
166    'xlnx-can-test',
167    'migration-test']
169 qtests_s390x = \
170   (slirp.found() ? ['pxe-test', 'test-netfilter'] : []) +                 \
171   (config_host.has_key('CONFIG_POSIX') ? ['test-filter-mirror'] : []) +                         \
172   (config_host.has_key('CONFIG_POSIX') ? ['test-filter-redirector'] : []) +                     \
173   ['boot-serial-test',
174    'drive_del-test',
175    'device-plug-test',
176    'virtio-ccw-test',
177    'cpu-plug-test',
178    'migration-test']
180 qos_test_ss = ss.source_set()
181 qos_test_ss.add(
182   'ac97-test.c',
183   'ds1338-test.c',
184   'e1000-test.c',
185   'e1000e-test.c',
186   'eepro100-test.c',
187   'es1370-test.c',
188   'ipoctal232-test.c',
189   'megasas-test.c',
190   'ne2000-test.c',
191   'tulip-test.c',
192   'nvme-test.c',
193   'pca9552-test.c',
194   'pci-test.c',
195   'pcnet-test.c',
196   'sdhci-test.c',
197   'spapr-phb-test.c',
198   'tmp105-test.c',
199   'emc141x-test.c',
200   'usb-hcd-ohci-test.c',
201   'virtio-test.c',
202   'virtio-blk-test.c',
203   'virtio-net-test.c',
204   'virtio-rng-test.c',
205   'virtio-scsi-test.c',
206   'virtio-serial-test.c',
207   'vmxnet3-test.c',
209 if have_virtfs
210   qos_test_ss.add(files('virtio-9p-test.c'))
211 endif
212 qos_test_ss.add(when: 'CONFIG_VHOST_USER', if_true: files('vhost-user-test.c'))
214 tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c']
216 qtests = {
217   'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'],
218   'cdrom-test': files('boot-sector.c'),
219   'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1,
220   'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'],
221   'migration-test': files('migration-helpers.c'),
222   'pxe-test': files('boot-sector.c'),
223   'qos-test': [chardev, io, qos_test_ss.apply(config_host, strict: false).sources()],
224   'tpm-crb-swtpm-test': [io, tpmemu_files],
225   'tpm-crb-test': [io, tpmemu_files],
226   'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
227   'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'],
228   'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
229   'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'],
230   'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'),
233 qtest_executables = {}
234 foreach dir : target_dirs
235   if not dir.endswith('-softmmu')
236     continue
237   endif
239   target_base = dir.split('-')[0]
240   qtest_emulator = emulators['qemu-system-' + target_base]
241   target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic
243   test_deps = []
244   qtest_env = environment()
245   if have_tools
246     qtest_env.set('QTEST_QEMU_IMG', './qemu-img')
247     test_deps += [qemu_img]
248   endif
249   qtest_env.set('G_TEST_DBUS_DAEMON', meson.source_root() / 'tests/dbus-vmstate-daemon.sh')
250   qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base)
251   
252   foreach test : target_qtests
253     # Executables are shared across targets, declare them only the first time we
254     # encounter them
255     if not qtest_executables.has_key(test)
256       src = [test + '.c']
257       deps = [qemuutil, qos]
258       if test in qtests
259         # use a sourceset to quickly separate sources and deps
260         test_ss = ss.source_set()
261         test_ss.add(qtests[test])
262         src += test_ss.all_sources()
263         deps += test_ss.all_dependencies()
264       endif
265       qtest_executables += {
266         test: executable(test, src, dependencies: deps)
267       }
268     endif
269     # FIXME: missing dependency on the emulator binary and qemu-img
270     test('qtest-@0@/@1@'.format(target_base, test),
271          qtest_executables[test],
272          depends: [test_deps, qtest_emulator],
273          env: qtest_env,
274          args: ['--tap', '-k'],
275          protocol: 'tap',
276          suite: ['qtest', 'qtest-' + target_base])
277   endforeach
278 endforeach