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.
This commit is contained in:
Lennart Poettering 2018-03-23 09:51:02 +01:00
parent 67321fdf3e
commit ce6b7858ca

View file

@ -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--"