]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: remove unused 'basedir' var from integration test makefiles
authorDan Streetman <ddstreet@canonical.com>
Tue, 17 Nov 2020 21:10:29 +0000 (16:10 -0500)
committerDan Streetman <ddstreet@canonical.com>
Tue, 26 Jan 2021 21:05:49 +0000 (16:05 -0500)
test/TEST-01-BASIC/Makefile
test/TEST-52-HONORFIRSTSHUTDOWN/Makefile

index 79fe9688b816cf7658de39eea5783d17cef78442..bee382b8b1c5c360ea2a0726685296d8ce7285c4 100644 (file)
@@ -1,6 +1,6 @@
 BUILD_DIR=$(shell ../../tools/find-build-dir.sh)
 
 all setup run clean clean-again:
-       @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@
+       @TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@
 
 .PHONY: all setup run clean clean-again
index a06599081b41416a98bf7c25cf0f6b0f1c395d5a..46a28ac810ed00a866b6bf1482376d14cb58a2bf 100644 (file)
@@ -1,7 +1,7 @@
 BUILD_DIR=$(shell ../../tools/find-build-dir.sh)
 
 all setup run clean clean-again:
-       @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@
+       @TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@
 
 # finish option is used to run checks that can only be run outside of
 # the test execution. Example case, honor first shutdown, proof is obtained
@@ -11,6 +11,6 @@ all setup run clean clean-again:
 # the test will loop and will be terminated via a command timeout.
 # This just provides concrete confirmation.
 finish:
-       @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./fini.sh --$@
+       @TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./fini.sh --$@
 
 .PHONY: all setup run clean clean-again finish