X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=run_tests.sh;h=8a79b2726b2e0dcaae38360b2fe3b656064e2da8;hb=cdf3e45aaa38fc701dceeb57e6ceedd6ca68f408;hp=0f8eb57b8f49ff924a829768aae4c7b2a116de61;hpb=39dc281390fc129614fb3ffc08a5540fded34aa9;p=bertos.git diff --git a/run_tests.sh b/run_tests.sh index 0f8eb57b..8a79b272 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -8,6 +8,9 @@ # $Id$ # # $Log$ +# Revision 1.2 2005/02/28 10:46:44 bernie +# Remove test binaries. +# # Revision 1.1 2005/02/01 06:59:24 bernie # Really trivial testsuite framework. # @@ -28,10 +31,12 @@ for test in `find . -name "*_test.*"`; do *.cpp) $CXX $CXXFLAGS $test -o test || exit 1 ./test || exit 1 + rm -f test ;; *.c) $CC $CFLAGS $test -o test || exit 1 ./test || exit 1 + rm -f test ;; esac done