From ce6b7858cad8a8c692c35feb581e0efa98303bb5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 23 Mar 2018 09:51:02 +0100 Subject: [PATCH] run-integration-tests: show make command line executed That makes it much easier to figure out what to type to just run one specific test for debugging. --- test/run-integration-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 7d70be3fea..4afaa0909e 100755 --- a/test/run-integration-tests.sh +++ b/test/run-integration-tests.sh @@ -16,9 +16,9 @@ FAILURES=0 cd "$(dirname "$0")" for TEST in TEST-??-* ; do - echo -e "\n--x-- Starting $TEST --x--" + echo -e "\n--x-- Running $TEST --x--" set +e - make -C "$TEST" "BUILD_DIR=$BUILD_DIR" $args + ( set -x ; make -C "$TEST" "BUILD_DIR=$BUILD_DIR" $args ) RESULT=$? set -e echo "--x-- Result of $TEST: $RESULT --x--" -- 2.25.1