meson.build (2c9dce0196883d76e8bcb7142b26ab7587ff3006) | meson.build (77c05b0b746119a78bffb595b0313d39ac6b20fc) |
---|---|
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', --- 120 unchanged lines hidden (view full) --- 129 130qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] 131 132qtests_sparc64 = \ 133 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 134 ['prom-env-test', 'boot-serial-test'] 135 136qtests_npcm7xx = \ | 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', --- 120 unchanged lines hidden (view full) --- 129 130qtests_sparc = ['prom-env-test', 'm48t59-test', 'boot-serial-test'] 131 132qtests_sparc64 = \ 133 (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ 134 ['prom-env-test', 'boot-serial-test'] 135 136qtests_npcm7xx = \ |
137 ['npcm7xx_gpio-test', | 137 ['npcm7xx_adc-test', 138 'npcm7xx_gpio-test', |
138 'npcm7xx_rng-test', 139 'npcm7xx_timer-test', 140 'npcm7xx_watchdog_timer-test'] 141qtests_arm = \ 142 (config_all_devices.has_key('CONFIG_PFLASH_CFI02') ? ['pflash-cfi02-test'] : []) + \ 143 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \ 144 ['arm-cpu-features', 145 'microbit-test', --- 48 unchanged lines hidden (view full) --- 194 'virtio-test.c', 195 'virtio-blk-test.c', 196 'virtio-net-test.c', 197 'virtio-rng-test.c', 198 'virtio-scsi-test.c', 199 'virtio-serial-test.c', 200 'vmxnet3-test.c', 201) | 139 'npcm7xx_rng-test', 140 'npcm7xx_timer-test', 141 'npcm7xx_watchdog_timer-test'] 142qtests_arm = \ 143 (config_all_devices.has_key('CONFIG_PFLASH_CFI02') ? ['pflash-cfi02-test'] : []) + \ 144 (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \ 145 ['arm-cpu-features', 146 'microbit-test', --- 48 unchanged lines hidden (view full) --- 195 'virtio-test.c', 196 'virtio-blk-test.c', 197 'virtio-net-test.c', 198 'virtio-rng-test.c', 199 'virtio-scsi-test.c', 200 'virtio-serial-test.c', 201 'vmxnet3-test.c', 202) |
202if have_virtfs 203 qos_test_ss.add(files('virtio-9p-test.c')) 204endif | 203qos_test_ss.add(when: 'CONFIG_VIRTFS', if_true: files('virtio-9p-test.c')) |
205qos_test_ss.add(when: 'CONFIG_VHOST_USER', if_true: files('vhost-user-test.c')) 206 207tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c'] 208 209qtests = { 210 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 211 'cdrom-test': files('boot-sector.c'), 212 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, --- 59 unchanged lines hidden --- | 204qos_test_ss.add(when: 'CONFIG_VHOST_USER', if_true: files('vhost-user-test.c')) 205 206tpmemu_files = ['tpm-emu.c', 'tpm-util.c', 'tpm-tests.c'] 207 208qtests = { 209 'bios-tables-test': [io, 'boot-sector.c', 'acpi-utils.c', 'tpm-emu.c'], 210 'cdrom-test': files('boot-sector.c'), 211 'dbus-vmstate-test': files('migration-helpers.c') + dbus_vmstate1, --- 59 unchanged lines hidden --- |