From 980aced10bbff74e0932ad5dcc76fd2d4082b14c Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 28 Mar 2025 03:12:12 +0000 Subject: [PATCH] test: always install test-resolve subdir Content is also used by unit tests, not just resolved tests, so they are needed even when resolved is disabled, as unit tests are still built and run --- test/meson.build | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/meson.build b/test/meson.build index 9ec9e515e9c..b23553e34a8 100644 --- a/test/meson.build +++ b/test/meson.build @@ -359,11 +359,9 @@ if install_tests exclude_files : '.gitattributes', install_dir : testdata_dir) endif - if conf.get('ENABLE_RESOLVE') == 1 - install_subdir('test-resolve', - exclude_files : '.gitattributes', - install_dir : testdata_dir) - endif + install_subdir('test-resolve', + exclude_files : '.gitattributes', + install_dir : testdata_dir) # The unit tests implemented as shell scripts expect to find testdata/ # in the directory where they are stored. -- 2.47.3