trac#29: Cleanup timer on demo exit
[bertos.git] / bertos / run_tests.sh
index 0e3401b2bf28229b3daa50ed65d4e324fa3d42d5..77689f48353b5a93f9057802fcc20cc55f44d582 100755 (executable)
@@ -8,7 +8,6 @@
 # $Id$
 #
 
-
 VERBOSE=1
 
 CC=gcc
@@ -17,7 +16,7 @@ CFLAGS="-W -Wall -Wextra -I. -Iemul -std=gnu99 -fno-builtin -D_DEBUG -D_TEST -DA
 CXX=g++
 CXXFLAGS="$CFLAGS"
 
-TESTS=${TESTS:-`find . -name "*_test.*"`}
+TESTS=${TESTS:-`find . -name "*_test.c*"`}
 
 for test in $TESTS; do
        [ $VERBOSE -gt 0 ] && echo "Running $test..."