X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fnightly_test.sh;h=afe17321e324152a515ae2f59e986c90223cf0e1;hb=4c61653db84fe75fc2bb8f5af9d1ac0343068b4c;hp=d7916d12a8ad9719b13a272efa54fbb4ad039023;hpb=e423e63cade618baf616a79b99aaab5de74ec76e;p=bertos.git diff --git a/test/nightly_test.sh b/test/nightly_test.sh index d7916d12..afe17321 100755 --- a/test/nightly_test.sh +++ b/test/nightly_test.sh @@ -49,11 +49,16 @@ fi if [ $OPTS = 1 ] ; then #Copy BeRTOS sources printf "Starting nightlytest..\n" - printf "Silent mode enable, removing the TODO/FIXME message warnings.\n" + printf "Silent mode enabled: removing the TODO/FIXME messages.\n" cp -R $BERTOS_DIR $BERTOS_DIR_BAK || exit 1 #Strip away TODOs and FIXME find $BERTOS_DIR -name "*.[ch]" | xargs perl -p -i -e 's/^\s*#warning\s*(TODO|FIXME).*//g;' + CFG_LIST=`find $BERTOS_DIR/cfg -name "cfg_*.h"` + for i in $CFG_LIST ; + do + $TEST_DIR/enablecfg.py $i + done fi #Cpu targets that we want to test @@ -67,8 +72,7 @@ done #Clean and launch make on all make -f ${MAKEFILE_TEST_DIR}/Makefile.test clean make -f ${MAKEFILE_TEST_DIR}/Makefile.test - - +RET=$? if [ $OPTS = 1 ] ; then #Restore original sources if [ -d $BERTOS_DIR_BAK ] ; then @@ -82,5 +86,5 @@ if [ $OPTS = 1 ] ; then fi printf "Nightly test done.\n\n" - +exit $RET