From ad75029f5e57caaceb091c1c27d72b52cf88302c Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Mon, 14 Sep 2015 16:21:59 +0100 Subject: Strip out logging to file We need to log to the terminal, or BuildBot will kill us. --- test-runner.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/test-runner.sh b/test-runner.sh index b272af2..a280cc8 100755 --- a/test-runner.sh +++ b/test-runner.sh @@ -13,21 +13,20 @@ shift BACKEND="$1" shift TEST_FILES=( "$@" ) -LOG_FILE="$FILE.test.log" # Write log header -echo "Testing image $FILE on $(date)" > "$LOG_FILE" -echo " with test command files: ${TEST_FILES[@]}" >> "$LOG_FILE" -echo "===============================================================================" >> "$LOG_FILE" +echo "Testing image $FILE on $(date)" +echo " with test command files: ${TEST_FILES[@]}" +echo "===============================================================================" # Fetch the image -echo "Fetching image $FILE" >> "$LOG_FILE" +echo "Fetching image $FILE" curl -o "$FILE" "$URL" # Run the test -echo "Launching $BACKEND test backend" >> "$LOG_FILE" -"$BACKEND/do-tests.sh" "$FILE" "${TEST_FILES[@]}" >> "$LOG_FILE" 2>&1 +echo "Launching $BACKEND test backend" +"$BACKEND/do-tests.sh" "$FILE" "${TEST_FILES[@]}" # Delete the test image -echo "Deleting local image $FILE" >> "$LOG_FILE" 2>&1 +echo "Deleting local image $FILE" rm "$FILE" -- cgit v1.2.1