From: batt Date: Sun, 4 Oct 2009 11:43:18 +0000 (+0000) Subject: Exclude external NMEAP library from nightly test. X-Git-Tag: 2.3.0~69 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=7e6a5acb938ea7c552b8b6ef0593ae1aebcf220c;hp=66b147c758f5e892fa209141e5a052935e607887;p=bertos.git Exclude external NMEAP library from nightly test. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3012 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 62ac458c..c17fe74a 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -41,6 +41,7 @@ EMUL_DIR="${BERTOS_DIR}/emul" WIZARD_DIR="./wizard" APP_DIR="./examples" FAT_DIR="${BERTOS_DIR}/fs/fatfs" +NMEA_DIR="${BERTOS_DIR}/net/nmeap" if [ $# \< 2 ] ; then printf "You must specify a cpu target, and source file type!\n" @@ -49,7 +50,7 @@ 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" +EXCLUDE_DIRS="$COPY_DIR $CPU_DIR $APP_DIR $OS_DIR $WIZARD_DIR $EMUL_DIR $FAT_DIR $NMEA_DIR" EXCLUDE_CMD="\.svn -prune " for i in $EXCLUDE_DIRS; do EXCLUDE_CMD="$EXCLUDE_CMD -o -path $i -prune ";