X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=4365e2b39d31a2afa0f81bfd8b849be1f2e6a771;hb=a4bdf6cbff7b5fce39aef18765396cc0aab26bf0;hp=b58f682450cba73fe3c09270c79bbe4cf70e16eb;hpb=77b037974e46f78a0c6746753bf8d1c07b9630fc;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index b58f6824..4365e2b3 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -45,16 +45,34 @@ 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` #Select c and asm sources for selected cpu target -TRG_SRC=`find ${CPU_DIR}/${1} -name \.svn -prune -o -name *.${2} -print | xargs` +TRG_SRC=`find ${CPU_DIR}/$CPU_TARGET -name \.svn -prune -o -name *.${2} -print | xargs` #Generate a list of all source for each cpu SRC_ALL=${GEN_SRC}" "${TRG_SRC} +# Find the files that contain the string +# NOTEST and put it in a list + +NOTEST="notest:" +for src in $SRC_ALL ; +do + grep "$NOTEST\s*$CPU_TARGET" $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 +# compiled +for src in $EXCLUDE_LIST ; +do + SRC_ALL=`echo $SRC_ALL | sed -e "s;$src;;g"` +done printf "${SRC_ALL}"