X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=run_tests.sh;h=7edc89df78657e397a5860f8d38f96e4b7e302fe;hb=2535cb94ec2183791128f8bbd109ca69a960cf78;hp=0f8eb57b8f49ff924a829768aae4c7b2a116de61;hpb=39dc281390fc129614fb3ffc08a5540fded34aa9;p=bertos.git diff --git a/run_tests.sh b/run_tests.sh index 0f8eb57b..7edc89df 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -1,25 +1,21 @@ #!/bin/bash # -# Copyright Develer S.r.l. (http://www.develer.com/) +# Copyright 2005 Develer S.r.l. (http://www.develer.com/) # All rights reserved. # # Author: Bernardo Innocenti # # $Id$ # -# $Log$ -# Revision 1.1 2005/02/01 06:59:24 bernie -# Really trivial testsuite framework. -# VERBOSE=1 CC=gcc -CFLAGS="-W -Wall -Wextra" +CFLAGS="-W -Wall -Wextra -I. -fno-builtin -D_DEBUG" CXX=g++ -CXXFLAGS="-W -Wall -Wextra" +CXXFLAGS="$CFLAGS" for test in `find . -name "*_test.*"`; do @@ -28,10 +24,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