diff --git a/test/TEST-01-BASIC/Makefile b/test/TEST-01-BASIC/Makefile index 34d7cc6cdf..45e9bfc67c 100644 --- a/test/TEST-01-BASIC/Makefile +++ b/test/TEST-01-BASIC/Makefile @@ -1,4 +1,9 @@ BUILD_DIR=$(shell ../../tools/find-build-dir.sh) -all setup clean run: +all setup run: @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@ + +clean clean-again: + @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --clean + +.PHONY: all setup run clean clean-again diff --git a/test/TEST-13-NSPAWN-SMOKE/Makefile b/test/TEST-13-NSPAWN-SMOKE/Makefile index 7d74b1343a..e5e3350211 100644 --- a/test/TEST-13-NSPAWN-SMOKE/Makefile +++ b/test/TEST-13-NSPAWN-SMOKE/Makefile @@ -2,6 +2,9 @@ BUILD_DIR=$(shell ../../tools/find-build-dir.sh) all setup run: @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@ -clean: + +clean clean-again: @basedir=../.. TEST_BASE_DIR=../ ./test.sh --clean @rm -f has-overflow + +.PHONY: all setup run clean clean-again diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 94df346c28..0d2377128e 100755 --- a/test/run-integration-tests.sh +++ b/test/run-integration-tests.sh @@ -4,7 +4,7 @@ BUILD_DIR="$($(dirname "$0")/../tools/find-build-dir.sh)" if [ $# -gt 0 ]; then args="$@" else - args="clean setup run" + args="clean setup run clean-again" fi ninja -C "$BUILD_DIR"