summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan Streetman <ddstreet@canonical.com>2020-11-17 16:10:29 -0500
committerDan Streetman <ddstreet@canonical.com>2021-01-26 16:05:49 -0500
commit4326586be28a2a41be2fa1fe8abe4941566a9610 (patch)
tree49cd7352afa8a2c22ed612eeb037e92063a210f6 /test
parent679dab6a8f286aec66969f34fe2d9e127c3d273d (diff)
downloadsystemd-4326586be28a2a41be2fa1fe8abe4941566a9610.tar.gz
test: remove unused 'basedir' var from integration test makefiles
Diffstat (limited to 'test')
-rw-r--r--test/TEST-01-BASIC/Makefile2
-rw-r--r--test/TEST-52-HONORFIRSTSHUTDOWN/Makefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/TEST-01-BASIC/Makefile b/test/TEST-01-BASIC/Makefile
index 79fe9688b8..bee382b8b1 100644
--- a/test/TEST-01-BASIC/Makefile
+++ b/test/TEST-01-BASIC/Makefile
@@ -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
diff --git a/test/TEST-52-HONORFIRSTSHUTDOWN/Makefile b/test/TEST-52-HONORFIRSTSHUTDOWN/Makefile
index a06599081b..46a28ac810 100644
--- a/test/TEST-52-HONORFIRSTSHUTDOWN/Makefile
+++ b/test/TEST-52-HONORFIRSTSHUTDOWN/Makefile
@@ -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