From 92c516732707aa829e8dd62f37532d8db1098a45 Mon Sep 17 00:00:00 2001 From: toddouska Date: Thu, 29 Nov 2012 12:07:32 -0800 Subject: [PATCH] commit tests no longer need make clean after configure --- commit-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commit-tests.sh b/commit-tests.sh index 96bc7fd03..f26f1ed16 100755 --- a/commit-tests.sh +++ b/commit-tests.sh @@ -16,7 +16,7 @@ echo -e "\n\nTesting basic config too...\n\n" RESULT=$? [ $RESULT -ne 0 ] && echo -e "\n\nBasic config ./configure failed" && exit 1 -make clean; make -j 8 test; +make -j 8 test; RESULT=$? [ $RESULT -ne 0 ] && echo -e "\n\nBasic config make test failed" && exit 1 @@ -27,7 +27,7 @@ echo -e "\n\nTesting full config as well...\n\n" RESULT=$? [ $RESULT -ne 0 ] && echo -e "\n\nFull config ./configure failed" && exit 1 -make clean; make -j 8 test; +make -j 8 test; RESULT=$? [ $RESULT -ne 0 ] && echo -e "\n\nFull config make test failed" && exit 1