Allow to define "notest: all" to completely exclude some testcases from the nightly...
[bertos.git] / test / get_source_list.sh
index 93c2defd45c992a334fda7799c9c02422bdb70b5..cb244570635438ab6d48db1f7dec9f20cd5bd497 100755 (executable)
@@ -51,7 +51,7 @@ if [ $# \< 2 ] ; then
 fi
 CPU_TARGET=$1
 EXCLUDE_DIRS="$COPY_DIR $CPU_DIR $APP_DIR $OS_DIR $WIZARD_DIR $EMUL_DIR $FAT_DIR $NMEA_DIR"
-EXCLUDE_CMD="\.svn -or -name preempt.c -or -name coop.c -prune "
+EXCLUDE_CMD="\.svn -prune "
 for i in $EXCLUDE_DIRS; do 
        EXCLUDE_CMD="$EXCLUDE_CMD -o -path $i -prune ";
 done
@@ -66,7 +66,10 @@ TRG_SRC=`find ${CPU_DIR}/$CPU_TARGET -name \.svn -prune -o -name *.${2} -print |
 SRC_ALL=${GEN_SRC}" "${TRG_SRC}
 
 # Find the files that contain the string
-# NOTEST <cpu target> and put it in a list
+# NOTEST <cpu target>
+# or
+# NOTEST all
+# and put them in a list
 
 NOTEST="notest:"
 for src in $SRC_ALL ;
@@ -74,7 +77,11 @@ do
        grep -P "$NOTEST\s*$CPU_TARGET" $src 2>&1 > /dev/null
        if [ $? -eq 0 ] ; then
                EXCLUDE_LIST="$EXCLUDE_LIST $src"
-       fi      
+       fi
+       grep -P "$NOTEST\s*all" $src 2>&1 > /dev/null
+       if [ $? -eq 0 ] ; then
+               EXCLUDE_LIST="$EXCLUDE_LIST $src"
+       fi
 done
 
 # Remove the exclude list files from the sources to be