Add return value for failed tests.
[bertos.git] / test / run_tests.sh
index ea88cb05e12ea199d98ebe94b49015ed275f8cd7..14a6fb5e5aca732850a02de2fc045b268bddd32a 100755 (executable)
@@ -13,7 +13,7 @@
 #  2 - build warnings
 #  3 - execution output
 #  4 - build commands
-VERBOSE=${VERBOSE:-3}
+VERBOSE=${VERBOSE:-1}
 
 CC=gcc
 #FIXME: -Ibertos/emul should not be needed
@@ -24,7 +24,7 @@ CFLAGS="-W -Wall -Wextra -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wwrit
 CXX=g++
 CXXFLAGS="$CFLAGS"
 
-TESTS?=${TESTS:-`find . \
+TESTS=${TESTS:-`find . \
        \( -name .svn -prune -o -name .git -prune -o -name .hg  -prune \) \
        -o -name "*_test.c" -print` }
 
@@ -101,12 +101,15 @@ for src in $TESTS; do
                        [ $VERBOSE -gt 0 ] && echo "Running $name..."
                        if ! $exe 2>&1 | tee >$runout $testdir/$name.out; then
                                echo "FAILED [RUN]: $name"
+                               exit 2
                        fi
                else
                        echo "FAILED [BUILD]: $name"
+                       exit 3
                fi
        else
                echo "FAILED [PREPARING]: $name"
+               exit 4
        fi
 done