From: Yu Watanabe Date: Thu, 31 Dec 2020 19:56:02 +0000 (+0900) Subject: test: move test-systemd-tmpfiles.py from src/test to test X-Git-Tag: v248-rc1~304^2~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0703d2f6c43f998afa6b865e35ee3ad010508595;p=thirdparty%2Fsystemd.git test: move test-systemd-tmpfiles.py from src/test to test As the other test scripts, e.g. test-sysusers.sh, are located under test rather than src/test. --- diff --git a/src/test/meson.build b/src/test/meson.build index 7280cd31b31..14edc713990 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -41,10 +41,6 @@ test_dlopen_c = files('test-dlopen.c') ############################################################ -test_systemd_tmpfiles_py = find_program('test-systemd-tmpfiles.py') - -############################################################ - tests += [ [['src/test/test-device-nodes.c'], [], diff --git a/test/meson.build b/test/meson.build index 2785dc92a77..69ee81eb026 100644 --- a/test/meson.build +++ b/test/meson.build @@ -60,6 +60,10 @@ test_network_generator_conversion_sh = find_program('test-network-generator-conv ############################################################ +test_systemd_tmpfiles_py = find_program('test-systemd-tmpfiles.py') + +############################################################ + test_sysusers_dir = join_paths(meson.current_source_dir(), 'test-sysusers') test_sysusers_sh = configure_file( diff --git a/src/test/test-systemd-tmpfiles.py b/test/test-systemd-tmpfiles.py similarity index 100% rename from src/test/test-systemd-tmpfiles.py rename to test/test-systemd-tmpfiles.py