aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-07-01 12:48:27 +0200
committerThomas Huth <thuth@redhat.com>2025-07-11 10:30:04 +0200
commit06fcf87f56ac47b89932b3698e86224ea7bc5a93 (patch)
tree77d40dfa63cb58335ff5f687266fdba4ccb67a9e
parent21820b4b479842c7fa67ec65f9b0b62c286b86f4 (diff)
downloadqemu-06fcf87f56ac47b89932b3698e86224ea7bc5a93.zip
qemu-06fcf87f56ac47b89932b3698e86224ea7bc5a93.tar.gz
qemu-06fcf87f56ac47b89932b3698e86224ea7bc5a93.tar.bz2
tests/functional: Add dependency to the keymap_targets
When doing a "configure" in a an empty build directory, followed by a "make check" without a normal build in between, the vnc functional test currently fails since the keymaps have not been built yet. Thus add a dependency to the keymap_targets here to make sure that the keymaps are built before running the functional tests. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20250701104827.363904-1-thuth@redhat.com>
-rw-r--r--tests/functional/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/meson.build b/tests/functional/meson.build
index 1ae5f02..ae5c52d 100644
--- a/tests/functional/meson.build
+++ b/tests/functional/meson.build
@@ -374,7 +374,7 @@ foreach speed : ['quick', 'thorough']
target_tests = get_variable('tests_' + target_base + '_' + sysmode + '_' + speed, [])
endif
- test_deps = roms
+ test_deps = [roms, keymap_targets]
test_env = environment()
if have_tools
test_env.set('QEMU_TEST_QEMU_IMG', meson.global_build_root() / 'qemu-img')