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