X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=9a0d625d3d088f409a2e16639c99ee2b3169e400;hb=e9da37a12c607381b96a0d11e038ad07363da650;hp=93c2defd45c992a334fda7799c9c02422bdb70b5;hpb=24eabd04c475344982213f43dd2f9cabec05d3ea;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 93c2defd..9a0d625d 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -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" @@ -50,8 +50,8 @@ if [ $# \< 2 ] ; then exit 1 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_DIRS="$COPY_DIR $CPU_DIR $APP_DIR $OS_DIR $WIZARD_DIR $EMUL_DIR $FAT_DIR $NMEA_DIR ${BERTOS_DIR}/sec" +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 and put it in a list +# NOTEST +# 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