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