nes-proj/tools/cooja/contiki_tests/RUN_ALL

41 lines
804 B
Plaintext
Raw Normal View History

2008-04-23 15:19:13 +00:00
#!/bin/bash
2008-04-22 14:29:05 +00:00
if [ -z "$CONTIKI" ]; then
echo Undefined variable: CONTIKI
exit
fi
if [ -z "$MAILTO" ]; then
echo Undefined variable: MAILTO
exit
fi
2008-04-29 04:43:27 +00:00
echo ">>>>>>> Cleaning up previous tests <<<<<<<<"
rm -f *.log *.cooja_log
rm -fr se obj_cooja
rm -f symbols.c symbols.h
2008-04-24 06:17:26 +00:00
2008-04-29 04:43:27 +00:00
echo ">>>>>>> Updating from CVS <<<<<<<<"
(cd $CONTIKI && cvs update -dP)
2008-04-22 14:29:05 +00:00
2008-04-29 04:43:27 +00:00
echo ">>>>>>> Building COOJA <<<<<<<<"
(cd $CONTIKI/tools/cooja && ant clean && ant jar)
2008-04-29 04:43:27 +00:00
echo ">>>>>>> Creating test log <<<<<<<<"
2008-04-24 06:17:26 +00:00
rm -f *.log
2008-04-23 15:19:13 +00:00
LOG="TEST-`date '+%F'`.log"
touch $LOG
2008-04-29 04:43:27 +00:00
echo "" >> $LOG
2008-04-24 06:17:26 +00:00
echo "Starting test run ($LOG)"
2008-04-22 14:29:05 +00:00
for myfile in ./*.csc
do
TEST=`basename $myfile .csc`
./RUN_TEST $TEST $LOG
echo "" >> $LOG
2008-04-23 15:19:13 +00:00
done
2008-04-29 04:43:27 +00:00
echo ">>>>>>> Sending mail <<<<<<<<"
cp $LOG ~/lastlog.log
cat $LOG | mail -s "Contiki test results" $MAILTO