diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-03-23 09:51:02 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-03-23 15:45:47 +0100 |
commit | ce6b7858cad8a8c692c35feb581e0efa98303bb5 (patch) | |
tree | ad566ca9411c90ab4b7d819af70b98f54aabaf11 /test/run-integration-tests.sh | |
parent | 67321fdf3ea60566a718a2e60ddc2628609a2895 (diff) | |
download | systemd-ce6b7858cad8a8c692c35feb581e0efa98303bb5.tar.gz |
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.
Diffstat (limited to 'test/run-integration-tests.sh')
-rwxr-xr-x | test/run-integration-tests.sh | 4 |
1 files 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--" |