xref: /openbmc/qemu/tests/qtest/meson.build (revision 8cb6db06)
1slow_qtests = {
2  'aspeed_smc-test': 360,
3  'bios-tables-test' : 910,
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-spi-seeprom-test'] : []) +           \
175  (config_all_devices.has_key('CONFIG_POWERNV') ? ['pnv-host-i2c-test'] : []) +              \
176  (config_all_devices.has_key('CONFIG_PSERIES') ? ['rtas-test'] : []) +                      \
177  (slirp.found() ? ['pxe-test'] : []) +              \
178  (config_all_devices.has_key('CONFIG_USB_UHCI') ? ['usb-hcd-uhci-test'] : []) +             \
179  (config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) +         \
180  qtests_pci + ['migration-test', 'numa-test', 'cpu-plug-test', 'drive_del-test']
181
182qtests_sh4 = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
183qtests_sh4eb = (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : [])
184
185qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] + \
186  qtests_filter
187
188qtests_sparc64 = \
189  (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) +            \
190  qtests_filter + \
191  ['prom-env-test', 'boot-serial-test']
192
193qtests_npcm7xx = \
194  ['npcm7xx_adc-test',
195   'npcm7xx_gpio-test',
196   'npcm7xx_pwm-test',
197   'npcm7xx_rng-test',
198   'npcm7xx_sdhci-test',
199   'npcm7xx_smbus-test',
200   'npcm7xx_timer-test',
201   'npcm7xx_watchdog_timer-test',
202   'npcm_gmac-test'] + \
203   (slirp.found() ? ['npcm7xx_emc-test'] : [])
204qtests_aspeed = \
205  ['aspeed_hace-test',
206   'aspeed_smc-test',
207   'aspeed_gpio-test']
208qtests_aspeed64 = \
209  ['ast2700-gpio-test']
210
211qtests_stm32l4x5 = \
212  ['stm32l4x5_exti-test',
213   'stm32l4x5_syscfg-test',
214   'stm32l4x5_rcc-test',
215   'stm32l4x5_gpio-test',
216   'stm32l4x5_usart-test']
217
218qtests_arm = \
219  (config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \
220  (config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
221  (config_all_devices.has_key('CONFIG_CMSDK_APB_TIMER') ? ['cmsdk-apb-timer-test'] : []) + \
222  (config_all_devices.has_key('CONFIG_CMSDK_APB_WATCHDOG') ? ['cmsdk-apb-watchdog-test'] : []) + \
223  (config_all_devices.has_key('CONFIG_PFLASH_CFI02') and
224   config_all_devices.has_key('CONFIG_MUSICPAL') ? ['pflash-cfi02-test'] : []) + \
225  (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
226  (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
227  (config_all_devices.has_key('CONFIG_GENERIC_LOADER') ? ['hexloader-test'] : []) + \
228  (config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
229  (config_all_devices.has_key('CONFIG_VEXPRESS') ? ['test-arm-mptimer'] : []) + \
230  (config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \
231  (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') ? qtests_stm32l4x5 : []) + \
232  (config_all_devices.has_key('CONFIG_FSI_APB2OPB_ASPEED') ? ['aspeed_fsi-test'] : []) + \
233  (config_all_devices.has_key('CONFIG_STM32L4X5_SOC') and
234   config_all_devices.has_key('CONFIG_DM163')? ['dm163-test'] : []) + \
235  ['arm-cpu-features',
236   'boot-serial-test']
237
238# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional
239qtests_aarch64 = \
240  (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) +                            \
241  (config_all_accel.has_key('CONFIG_TCG') and config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ?            \
242    ['tpm-tis-device-test', 'tpm-tis-device-swtpm-test'] : []) +                                         \
243  (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \
244  (config_all_devices.has_key('CONFIG_XLNX_VERSAL') ? ['xlnx-canfd-test', 'xlnx-versal-trng-test'] : []) + \
245  (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test', 'bcm2835-i2c-test'] : []) +  \
246  (config_all_accel.has_key('CONFIG_TCG') and                                            \
247   config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
248  (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed64 : []) + \
249  ['arm-cpu-features',
250   'numa-test',
251   'boot-serial-test',
252   'migration-test']
253
254qtests_s390x = \
255  qtests_filter + \
256  ['boot-serial-test',
257   'drive_del-test',
258   'device-plug-test',
259   'virtio-ccw-test',
260   'cpu-plug-test',
261   'migration-test']
262
263qtests_riscv32 = \
264  (config_all_devices.has_key('CONFIG_SIFIVE_E_AON') ? ['sifive-e-aon-watchdog-test'] : [])
265
266qtests_riscv64 = \
267  (unpack_edk2_blobs ? ['bios-tables-test'] : [])
268
269qos_test_ss = ss.source_set()
270qos_test_ss.add(
271  'ac97-test.c',
272  'adm1272-test.c',
273  'adm1266-test.c',
274  'ds1338-test.c',
275  'e1000-test.c',
276  'eepro100-test.c',
277  'es1370-test.c',
278  'ipoctal232-test.c',
279  'lsm303dlhc-mag-test.c',
280  'isl_pmbus_vr-test.c',
281  'max34451-test.c',
282  'megasas-test.c',
283  'ne2000-test.c',
284  'tulip-test.c',
285  'nvme-test.c',
286  'pca9552-test.c',
287  'pci-test.c',
288  'pcnet-test.c',
289  'sdhci-test.c',
290  'spapr-phb-test.c',
291  'tmp105-test.c',
292  'emc141x-test.c',
293  'usb-hcd-ohci-test.c',
294  'virtio-test.c',
295  'virtio-blk-test.c',
296  'virtio-net-test.c',
297  'virtio-rng-test.c',
298  'virtio-scsi-test.c',
299  'virtio-iommu-test.c',
300  'vmxnet3-test.c',
301  'igb-test.c',
302  'ufs-test.c',
303)
304
305if config_all_devices.has_key('CONFIG_VIRTIO_SERIAL')
306  qos_test_ss.add(files('virtio-serial-test.c'))
307endif
308
309if host_os != 'windows'
310  qos_test_ss.add(files('e1000e-test.c'))
311endif
312if have_virtfs
313  qos_test_ss.add(files('virtio-9p-test.c'))
314endif
315if have_vhost_user
316  qos_test_ss.add(files('vhost-user-test.c'))
317endif
318if have_tools and have_vhost_user_blk_server
319  qos_test_ss.add(files('vhost-user-blk-test.c'))
320endif
321
322tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c']
323
324migration_files = [files('migration-helpers.c')]
325if gnutls.found()
326  migration_files += [files('../unit/crypto-tls-psk-helpers.c'), gnutls]
327
328  if tasn1.found()
329    migration_files += [files('../unit/crypto-tls-x509-helpers.c'), tasn1]
330  endif
331endif
332
333qtests = {
334  'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'],
335  'cdrom-test': files('boot-sector.c'),
336  'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1,
337  'erst-test': files('erst-test.c'),
338  'ivshmem-test': [rt, '../../contrib/ivshmem-server/ivshmem-server.c'],
339  'migration-test': migration_files,
340  'pxe-test': files('boot-sector.c'),
341  'qos-test': [chardev, io, qos_test_ss.apply({}).sources()],
342  'tpm-crb-swtpm-test': [io, tpmemu_files],
343  'tpm-crb-test': [io, tpmemu_files],
344  'tpm-tis-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
345  'tpm-tis-test': [io, tpmemu_files, 'tpm-tis-util.c'],
346  'tpm-tis-i2c-test': [io, tpmemu_files, 'qtest_aspeed.c'],
347  'tpm-tis-device-swtpm-test': [io, tpmemu_files, 'tpm-tis-util.c'],
348  'tpm-tis-device-test': [io, tpmemu_files, 'tpm-tis-util.c'],
349  'virtio-net-failover': files('migration-helpers.c'),
350  'vmgenid-test': files('boot-sector.c', 'acpi-utils.c'),
351  'netdev-socket': files('netdev-socket.c', '../unit/socket-helpers.c'),
352}
353
354if vnc.found()
355  gvnc = dependency('gvnc-1.0', method: 'pkg-config', required: false)
356  if gvnc.found()
357    qtests += {'vnc-display-test': [gvnc]}
358    qtests_generic += [ 'vnc-display-test' ]
359  endif
360endif
361
362if dbus_display
363  qtests += {'dbus-display-test': [dbus_display1, gio]}
364endif
365
366qtest_executables = {}
367foreach dir : target_dirs
368  if not dir.endswith('-softmmu')
369    continue
370  endif
371
372  target_base = dir.split('-')[0]
373  qtest_emulator = emulators['qemu-system-' + target_base]
374  target_qtests = get_variable('qtests_' + target_base, []) + qtests_generic
375
376  test_deps = roms
377  qtest_env = environment()
378  if have_tools
379    qtest_env.set('QTEST_QEMU_IMG', './qemu-img')
380    test_deps += [qemu_img]
381  endif
382  qtest_env.set('G_TEST_DBUS_DAEMON', meson.project_source_root() / 'tests/dbus-vmstate-daemon.sh')
383  qtest_env.set('QTEST_QEMU_BINARY', './qemu-system-' + target_base)
384  if have_tools and have_vhost_user_blk_server
385    qtest_env.set('QTEST_QEMU_STORAGE_DAEMON_BINARY', './storage-daemon/qemu-storage-daemon')
386    test_deps += [qsd]
387  endif
388
389  qtest_env.set('PYTHON', python.full_path())
390
391  foreach test : target_qtests
392    # Executables are shared across targets, declare them only the first time we
393    # encounter them
394    if not qtest_executables.has_key(test)
395      src = [test + '.c']
396      deps = [qemuutil, qos]
397      if test in qtests
398        # use a sourceset to quickly separate sources and deps
399        test_ss = ss.source_set()
400        test_ss.add(qtests[test])
401        src += test_ss.all_sources()
402        deps += test_ss.all_dependencies()
403      endif
404      qtest_executables += {
405        test: executable(test, src, dependencies: deps)
406      }
407    endif
408    test('qtest-@0@/@1@'.format(target_base, test),
409         qtest_executables[test],
410         depends: [test_deps, qtest_emulator, emulator_modules],
411         env: qtest_env,
412         args: ['--tap', '-k'],
413         protocol: 'tap',
414         timeout: slow_qtests.get(test, 60),
415         priority: slow_qtests.get(test, 60),
416         suite: ['qtest', 'qtest-' + target_base])
417  endforeach
418endforeach
419