diff options
author | Havard Skinnemoen <hskinnemoen@google.com> | 2020-10-23 14:06:32 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-10-24 07:23:19 +0200 |
commit | 288c31e30d522dbac4d7998ca254735393c59307 (patch) | |
tree | 46b4a7597b4b389dbc7ec2c4b01d3e85438ee91a | |
parent | efd4d93b530807921b1940e13990c561530618d3 (diff) | |
download | qemu-288c31e30d522dbac4d7998ca254735393c59307.zip qemu-288c31e30d522dbac4d7998ca254735393c59307.tar.gz qemu-288c31e30d522dbac4d7998ca254735393c59307.tar.bz2 |
tests/qtest: Make npcm7xx_timer-test conditional on CONFIG_NPCM7XX
This test won't work if qemu was compiled without CONFIG_NPCM7XX, as
pointed out by Thomas Huth on a different patch.
Signed-off-by: Havard Skinnemoen <hskinnemoen@google.com>
Message-Id: <20201023210637.351238-2-hskinnemoen@google.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/qtest/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index 28d4068..7e0ecaa 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -133,12 +133,13 @@ qtests_sparc64 = \ (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : []) + \ ['prom-env-test', 'boot-serial-test'] +qtests_npcm7xx = ['npcm7xx_timer-test'] qtests_arm = \ (config_all_devices.has_key('CONFIG_PFLASH_CFI02') ? ['pflash-cfi02-test'] : []) + \ + (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \ ['arm-cpu-features', 'microbit-test', 'm25p80-test', - 'npcm7xx_timer-test', 'test-arm-mptimer', 'boot-serial-test', 'hexloader-test'] |