commit tests no longer need make clean after configure

pull/1/head
toddouska 2012-11-29 12:07:32 -08:00
parent 584520fbc1
commit 92c5167327
1 changed files with 2 additions and 2 deletions

View File

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