From: Lennart Poettering Date: Fri, 23 Mar 2018 08:51:02 +0000 (+0100) Subject: run-integration-tests: show make command line executed X-Git-Tag: v239~480^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ce6b7858cad8a8c692c35feb581e0efa98303bb5;p=platform%2Fupstream%2Fsystemd.git 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. --- diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 7d70be3..4afaa09 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--"