From 621573d37b7a94c995ce4011c74268279485bb00 Mon Sep 17 00:00:00 2001 From: "Yuan (Terry) Tang" Date: Tue, 29 Dec 2015 23:52:50 -0600 Subject: [PATCH] Delete test result file when finished --- tests/travis/error_detector.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/travis/error_detector.sh b/tests/travis/error_detector.sh index 73cfec6a53c8..d3fe5b6714b7 100755 --- a/tests/travis/error_detector.sh +++ b/tests/travis/error_detector.sh @@ -11,7 +11,9 @@ if [ "$testFail" == "0" ]; then # print results if anything fails cat $file echo "Some unit tests failed. " + rm $file exit 1 else echo "All unit tests passed! " + rm $file fi