X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=c57feb52a4c687cce8871461379cddf9a194d009;hb=0b5df3da61b25d2a8d39a76300a2f1ca922d4415;hp=ef6bd50ae57a625de8b62796ebe8fc943b5f887f;hpb=b94d14d668b87c1e6f6ddad5b6aafd6b45a613b6;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index ef6bd50a..c57feb52 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -32,6 +32,7 @@ #Directories BERTOS_DIR="./bertos" +COPY_DIR="./bertos.saved" CPU_DIR="${BERTOS_DIR}/cpu" #Directory to exclude @@ -46,8 +47,8 @@ if [ $# \< 2 ] ; then exit 1 fi CPU_TARGET=$1 -#Create a list of source file whitout a cpu specific source -GEN_SRC=`find . \( -name \.svn -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name *.${2} -print | xargs` +#Create a list of source file without a cpu specific source +GEN_SRC=`find . \( -name \.svn -prune -o -path $COPY_DIR -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name *.${2} -print | xargs` #Select c and asm sources for selected cpu target TRG_SRC=`find ${CPU_DIR}/$CPU_TARGET -name \.svn -prune -o -name *.${2} -print | xargs` @@ -62,8 +63,8 @@ NOTEST="notest:" for src in $SRC_ALL ; do grep "$NOTEST\s*$CPU_TARGET" $src 2>&1 > /dev/null - if [ $? = 0 ] ; then - EXCLUDE_LIST+=$src + if [ $? -eq 0 ] ; then + EXCLUDE_LIST="$EXCLUDE_LIST $src" fi done