From 0dc278dd020680d1a490d7d88ccf2c7be82b5c05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Tue, 7 May 2024 13:10:59 +0100 Subject: [PATCH] src: ensure augeas test file is generated before running test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We fail to express an ordering between the custom target that generates the combined augeas test input file, and the meson test command. Reviewed-by: Peter Krempa Signed-off-by: Daniel P. Berrangé --- src/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index a51f40fe16..17e6feafba 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1048,7 +1048,8 @@ if tests_enabled[0] '-I', data['builddir'], data['file'].full_path(), ], - suite: 'script' + suite: 'script', + depends: [data['file']] ) endforeach endif