From: Thomas Huth Date: Tue, 1 Jul 2025 10:48:27 +0000 (+0200) Subject: tests/functional: Add dependency to the keymap_targets X-Git-Tag: v10.1.0-rc0~27^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06fcf87f56ac47b89932b3698e86224ea7bc5a93;p=thirdparty%2Fqemu.git 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 Message-ID: <20250701104827.363904-1-thuth@redhat.com> --- diff --git a/tests/functional/meson.build b/tests/functional/meson.build index 1ae5f02fb3..ae5c52d79f 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')