xref: /openbmc/qemu/tests/qtest/meson.build (revision 719c6819)
1slow_qtests = {
2  'aspeed_smc-test': 360,
3  'bios-tables-test' : 610,
4  'cdrom-test' : 610,
5  'device-introspect-test' : 720,
6  'migration-test' : 480,
7  'npcm7xx_pwm-test': 300,
8  'npcm7xx_watchdog_timer-test': 120,
9  'qom-test' : 900,
10  'stm32l4x5_usart-test' : 600,
11  'test-hmp' : 240,
12  'pxe-test': 610,
13  'prom-env-test': 360,
14  'boot-serial-test': 360,
15  'qos-test': 120,
16  'vmgenid-test': 610,
17}
18
19qtests_generic = [
20  'cdrom-test',
21  'device-introspect-test',
22  'machine-none-test',
23  'qmp-test',
24  'qmp-cmd-test',
25  'qom-test',
26  'test-hmp',
27  'qos-test',
28  'readconfig-test',
29  'netdev-socket',
30]
31if enable_modules
32  qtests_generic += [ 'modules-test' ]
33endif
34
35qtests_pci = \
36  (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : []) +                  \
37  (config_all_devices.has_key('CONFIG_IVSHMEM_DEVICE') ? ['ivshmem-test'] : [])
38
39qtests_cxl = \
40  (config_all_devices.has_key('CONFIG_CXL') ? ['cxl-test'] : [])
41
42# FIXME: Get rid of get_option('default_devices') here and check
43#        for the availability of the default NICs in the tests
44qtests_filter = \
45  (get_option('default_devices') and slirp.found() ? ['test-netfilter'] : []) + \
46  (get_option('default_devices') and host_os != 'windows' ? ['test-filter-mirror'] : []) + \
47  (get_option('default_devices') and host_os != 'windows' ? ['test-filter-redirector'] : [])
48
49qtests_i386 = \
50  (slirp.found() ? ['pxe-test'] : []) + \
51  qtests_filter + \
52  (have_tools ? ['ahci-test'] : []) +                                                       \
53  (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +           \
54  (config_all_devices.has_key('CONFIG_SGA') ? ['boot-serial-test'] : []) +                  \
55  (config_all_devices.has_key('CONFIG_ISA_IPMI_KCS') ? ['ipmi-kcs-test'] : []) +            \
56  (host_os == 'linux' and                                                                  \
57   config_all_devices.has_key('CONFIG_ISA_IPMI_BT') and
58   config_all_devices.has_key('CONFIG_IPMI_EXTERN') ? ['ipmi-bt-test'] : []) +              \
59  (config_all_devices.has_key('CONFIG_WDT_IB700') ? ['wdt_ib700-test'] : []) +              \
60  (config_all_devices.has_key('CONFIG_PVPANIC_ISA') ? ['pvpanic-test'] : []) +              \
61  (config_all_devices.has_key('CONFIG_PVPANIC_PCI') ? ['pvpanic-pci-test'] : []) +          \
62  (config_all_devices.has_key('CONFIG_HDA') ? ['intel-hda-test'] : []) +                    \
63  (config_all_devices.has_key('CONFIG_I82801B11') ? ['i82801b11-test'] : []) +             \
64  (config_all_devices.has_key('CONFIG_IOH3420') ? ['ioh3420-test'] : []) +                  \
65  (config_all_devices.has_key('CONFIG_LPC_ICH9') ? ['lpc-ich9-test'] : []) +              \
66  (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) +            \
67  (config_all_devices.has_key('CONFIG_USB_UHCI') and                                        \
68   config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) +            \
69  (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) +        \
70  (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-test'] : []) +                  \
71  (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-swtpm-test'] : []) +            \
72  (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-test'] : []) +              \
73  (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-swtpm-test'] : []) +        \
74  (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) +              \
75  (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) +   \
76  (config_all_devices.has_key('CONFIG_MEGASAS_SCSI_PCI') ? ['fuzz-megasas-test'] : []) +    \
77  (config_all_devices.has_key('CONFIG_LSI_SCSI_PCI') ? ['fuzz-lsi53c895a-test'] : []) +     \
78  (config_all_devices.has_key('CONFIG_VIRTIO_SCSI') ? ['fuzz-virtio-scsi-test'] : []) +     \
79  (config_all_devices.has_key('CONFIG_SB16') ? ['fuzz-sb16-test'] : []) +                   \
80  (config_all_devices.has_key('CONFIG_SDHCI_PCI') ? ['fuzz-sdcard-test'] : []) +            \
81  (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) +                 \
82  (host_os != 'windows' and                                                                \
83   config_all_devices.has_key('CONFIG_ACPI_ERST') ? ['erst-test'] : []) +                   \
84  (config_all_devices.has_key('CONFIG_PCIE_PORT') and                                       \
85   config_all_devices.has_key('CONFIG_VIRTIO_NET') and                                      \
86   config_all_devices.has_key('CONFIG_Q35') and                                             \
87   config_all_devices.has_key('CONFIG_VIRTIO_PCI') and                                      \
88   slirp.found() ? ['virtio-net-failover'] : []) +                                          \
89  (unpack_edk2_blobs and                                                                    \
90   config_all_devices.has_key('CONFIG_HPET') and                                            \
91   config_all_devices.has_key('CONFIG_PARALLEL') ? ['bios-tables-test'] : []) +             \
92  qtests_pci +                                                                              \
93  qtests_cxl +                                                                              \
94  ['fdc-test',
95   'ide-test',
96   'hd-geo-test',
97   'boot-order-test',
98   'rtc-test',
99   'i440fx-test',
100   'fw_cfg-test',
101   'device-plug-test',
102   'drive_del-test',
103   'tco-test',
104   'cpu-plug-test',
105   'q35-test',
106   'vmgenid-test',
107   'migration-test',
108   'test-x86-cpuid-compat',
109   'numa-test'
110  ]
111
112if dbus_display
113  qtests_i386 += ['dbus-display-test']
114endif
115
116dbus_daemon = find_program('dbus-daemon', required: false)
117if dbus_daemon.found() and gdbus_codegen.found()
118  # Temporarily disabled due to Patchew failures:
119  #qtests_i386 += ['dbus-vmstate-test']
120  dbus_vmstate1 = custom_target('dbus-vmstate description',
121                                output: ['dbus-vmstate1.h', 'dbus-vmstate1.c'],
122                                input: meson.project_source_root() / 'backends/dbus-vmstate1.xml',
123                                command: [gdbus_codegen, '@INPUT@',
124                                          '--interface-prefix', 'org.qemu',
125                                          '--generate-c-code', '@BASENAME@']).to_list()
126else
127  dbus_vmstate1 = []
128endif
129
130qtests_x86_64 = qtests_i386
131
132qtests_alpha = ['boot-serial-test'] + \
133  qtests_filter + \
134  (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
135
136qtests_avr = [ 'boot-serial-test' ]
137
138qtests_hppa = ['boot-serial-test'] + \
139  qtests_filter + \
140  (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
141
142qtests_loongarch64 = qtests_filter + \
143  ['boot-serial-test', 'numa-test']
144
145qtests_m68k = ['boot-serial-test'] + \
146  qtests_filter
147
148qtests_microblaze = ['boot-serial-test'] + \
149  qtests_filter
150
151qtests_microblazeel = qtests_microblaze
152
153qtests_mips = \
154  qtests_filter + \
155  (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
156  (config_all_devices.has_key('CONFIG_VGA') ? ['display-vga-test'] : [])
157
158qtests_mipsel = qtests_mips
159qtests_mips64 = qtests_mips
160qtests_mips64el = qtests_mips
161
162qtests_ppc = \
163  qtests_filter + \
164  (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
165  (config_all_devices.has_key('CONFIG_M48T59') ? ['m48t59-test'] : []) +                     \
166  (config_all_accel.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) +                              \
167  (config_all_accel.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) +                           \
168  ['boot-order-test']
169
170qtests_ppc64 = \
171  qtests_ppc + \
172  (config_all_devices.has_key('CONFIG_PSERIES') ? ['device-plug-test'] : []) +               \
173  (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-xscom-test'] : []) +                 \
174  (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-host-i2c-test'] : []) +              \
175  (config_all_devices.has_key('CONFIG_PSERIES') ? ['rtas-test'] : []) +                      \
176  (slirp.found() ? ['pxe-test'] : []) +              \
177  (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) +             \
178  (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) +         \
179  qtests_pci + ['migration-test', 'numa-test', 'cpu-plug-test', 'drive_del-test']
180
181qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
182qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
183
184qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] + \
185  qtests_filter
186
187qtests_sparc64 = \
188  (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
189  qtests_filter + \
190  ['prom-env-test', 'boot-serial-test']
191
192qtests_npcm7xx = \
193  ['npcm7xx_adc-test',
194   'npcm7xx_gpio-test',
195   'npcm7xx_pwm-test',
196   'npcm7xx_rng-test',
197   'npcm7xx_sdhci-test',
198   'npcm7xx_smbus-test',
199   'npcm7xx_timer-test',
200   'npcm7xx_watchdog_timer-test',
201   'npcm_gmac-test'] + \
202   (slirp.found() ? ['npcm7xx_emc-test'] : [])
203qtests_aspeed = \
204  ['aspeed_hace-test',
205   'aspeed_smc-test',
206   'aspeed_gpio-test']
207
208qtests_stm32l4x5 = \
209  ['stm32l4x5_exti-test',
210   'stm32l4x5_syscfg-test',
211   'stm32l4x5_rcc-test',
212   'stm32l4x5_gpio-test',
213   'stm32l4x5_usart-test']
214
215qtests_arm = \
216  (config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \
217  (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
218  (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \
219  (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \
220  (config_all_devices.has_key('CONFIG_PFLASH_CFI02') and
221   config_all_devices.has_key('CONFIG_MUSICPAL') ? ['pflash-cfi02-test'] : []) + \
222  (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
223  (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
224  (config_all_devices.has_key('CONFIG_GENERIC_LOADER') ? ['hexloader-test'] : []) + \
225  (config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
226  (config_all_devices.has_key('CONFIG_VEXPRESS') ? ['test-arm-mptimer'] : []) + \
227  (config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \
228  (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') ? qtests_stm32l4x5 : []) + \
229  (config_all_devices.has_key('CONFIG_FSI_APB2OPB_ASPEED') ? ['aspeed_fsi-test'] : []) + \
230  (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') and
231   config_all_devices.has_key('CONFIG_DM163')? ['dm163-test'] : []) + \
232  ['arm-cpu-features',
233   'boot-serial-test']
234
235# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional
236qtests_aarch64 = \
237  (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) +                            \
238  (config_all_accel.has_key('CONFIG_TCG') and config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ?            \
239    ['tpm-tis-device-test', 'tpm-tis-device-swtpm-test'] : []) +                                         \
240  (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \
241  (config_all_devices.has_key('CONFIG_XLNX_VERSAL') ? ['xlnx-canfd-test', 'xlnx-versal-trng-test'] : []) + \
242  (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test', 'bcm2835-i2c-test'] : []) +  \
243  (config_all_accel.has_key('CONFIG_TCG') and                                            \
244   config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
245  ['arm-cpu-features',
246   'numa-test',
247   'boot-serial-test',
248   'migration-test']
249
250qtests_s390x = \
251  qtests_filter + \
252  ['boot-serial-test',
253   'drive_del-test',
254   'device-plug-test',
255   'virtio-ccw-test',
256   'cpu-plug-test',
257   'migration-test']
258
259qtests_riscv32 = \
260  (config_all_devices.has_key('CONFIG_SIFIVE_E_AON') ? ['sifive-e-aon-watchdog-test'] : [])
261
262qos_test_ss = ss.source_set()
263qos_test_ss.add(
264  'ac97-test.c',
265  'adm1272-test.c',
266  'adm1266-test.c',
267  'ds1338-test.c',
268  'e1000-test.c',
269  'eepro100-test.c',
270  'es1370-test.c',
271  'ipoctal232-test.c',
272  'lsm303dlhc-mag-test.c',
273  'isl_pmbus_vr-test.c',
274  'max34451-test.c',
275  'megasas-test.c',
276  'ne2000-test.c',
277  'tulip-test.c',
278  'nvme-test.c',
279  'pca9552-test.c',
280  'pci-test.c',
281  'pcnet-test.c',
282  'sdhci-test.c',
283  'spapr-phb-test.c',
284  'tmp105-test.c',
285  'emc141x-test.c',
286  'usb-hcd-ohci-test.c',
287  'virtio-test.c',
288  'virtio-blk-test.c',
289  'virtio-net-test.c',
290  'virtio-rng-test.c',
291  'virtio-scsi-test.c',
292  'virtio-iommu-test.c',
293  'vmxnet3-test.c',
294  'igb-test.c',
295  'ufs-test.c',
296)
297
298if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL')
299  qos_test_ss.add(files('virtio-serial-test.c'))
300endif
301
302if host_os != 'windows'
303  qos_test_ss.add(files('e1000e-test.c'))
304endif
305if have_virtfs
306  qos_test_ss.add(files('virtio-9p-test.c'))
307endif
308if have_vhost_user
309  qos_test_ss.add(files('vhost-user-test.c'))
310endif
311if have_tools and have_vhost_user_blk_server
312  qos_test_ss.add(files('vhost-user-blk-test.c'))
313endif
314
315tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c']
316
317migration_files = [files('migration-helpers.c')]
318if gnutls.found()
319  migration_files += [files('../unit/crypto-tls-psk-helpers.c'), gnutls]
320
321  if tasn1.found()
322    migration_files += [files('../unit/crypto-tls-x509-helpers.c',
323                              '../unit/pkix_asn1_tab.c'), tasn1]
324  endif
325endif
326
327qtests = {
328  'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'],
329  'cdrom-test': files('boot-sector.c'),
330  'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1,
331  'erst-test': files('erst-test.c'),
332  'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'],
333  'migration-test': migration_files,
334  'pxe-test': files('boot-sector.c'),
335  'qos-test': [chardev, io, qos_test_ss.apply({}).sources()],
336  'tpm-crb-swtpm-test': [io, tpmemu_files],
337  'tpm-crb-test': [io, tpmemu_files],
338  'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
339  'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'],
340  'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'],
341  'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
342  'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'],
343  'virtio-net-failover': files('migration-helpers.c'),
344  'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'),
345  'netdev-socket': files('netdev-socket.c', '../unit/socket-helpers.c'),
346}
347
348if vnc.found()
349  gvnc = dependency('gvnc-1.0', method: 'pkg-config', required: false)
350  if gvnc.found()
351    qtests += {'vnc-display-test': [gvnc]}
352    qtests_generic += [ 'vnc-display-test' ]
353  endif
354endif
355
356if dbus_display
357  qtests += {'dbus-display-test': [dbus_display1, gio]}
358endif
359
360qtest_executables = {}
361foreach dir : target_dirs
362  if not dir.endswith('-softmmu')
363    continue
364  endif
365
366  target_base = dir.split('-')[0]
367  qtest_emulator = emulators['qemu-system-' + target_base]
368  target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic
369
370  test_deps = roms
371  qtest_env = environment()
372  if have_tools
373    qtest_env.set('QTEST_QEMU_IMG', './qemu-img')
374    test_deps += [qemu_img]
375  endif
376  qtest_env.set('G_TEST_DBUS_DAEMON', meson.project_source_root() / 'tests/dbus-vmstate-daemon.sh')
377  qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base)
378  if have_tools and have_vhost_user_blk_server
379    qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon')
380    test_deps += [qsd]
381  endif
382
383  qtest_env.set('PYTHON', python.full_path())
384
385  foreach test : target_qtests
386    # Executables are shared across targets, declare them only the first time we
387    # encounter them
388    if not qtest_executables.has_key(test)
389      src = [test + '.c']
390      deps = [qemuutil, qos]
391      if test in qtests
392        # use a sourceset to quickly separate sources and deps
393        test_ss = ss.source_set()
394        test_ss.add(qtests[test])
395        src += test_ss.all_sources()
396        deps += test_ss.all_dependencies()
397      endif
398      qtest_executables += {
399        test: executable(test, src, dependencies: deps)
400      }
401    endif
402    test('qtest-@0@/@1@'.format(target_base, test),
403         qtest_executables[test],
404         depends: [test_deps, qtest_emulator, emulator_modules],
405         env: qtest_env,
406         args: ['--tap', '-k'],
407         protocol: 'tap',
408         timeout: slow_qtests.get(test, 60),
409         priority: slow_qtests.get(test, 60),
410         suite: ['qtest', 'qtest-' + target_base])
411  endforeach
412endforeach
413