Test only c/c++ sources.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 9 Aug 2008 10:09:53 +0000 (10:09 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 9 Aug 2008 10:09:53 +0000 (10:09 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1588 38d2e660-2303-0410-9eaa-f027e97ec537

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..."