Remove boards directory from testing.
[bertos.git] / test / get_source_list.sh
index c17fe74aa627e8be054fa291eeed0222bbb7377b..41f99ca6805d95093c6f2219b841d03b02ea4805 100755 (executable)
@@ -39,7 +39,7 @@ CPU_DIR="${BERTOS_DIR}/cpu"
 OS_DIR="${BERTOS_DIR}/os"
 EMUL_DIR="${BERTOS_DIR}/emul"
 WIZARD_DIR="./wizard"
-APP_DIR="./examples"
+APP_DIR="./examples ./boards"
 FAT_DIR="${BERTOS_DIR}/fs/fatfs"
 NMEA_DIR="${BERTOS_DIR}/net/nmeap"
 
@@ -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