Merge pull request #1402 from simonduq/pr/ci-simexec-log-output

Travis: improved output for failed Cooja simulation
This commit is contained in:
Simon Duquennoy 2016-02-01 15:30:13 +01:00
commit 5d67a612b4
1 changed files with 2 additions and 2 deletions

View File

@ -55,13 +55,13 @@ while (( "$#" )); do
#Verbose output when using CI
if [ "$CI" = "true" ]; then
echo "==== COOJA.log ====" ; cat COOJA.log;
echo "==== $BASENAME.log ====" ; cat $BASENAME.log;
echo "==== COOJA.testlog ====" ; cat COOJA.testlog;
echo "==== Files used for simulation (sha1sum) ===="
grep "Loading firmware from:" COOJA.log | cut -d " " -f 10 | uniq | xargs -r sha1sum
grep "Creating core communicator between Java class" COOJA.log | cut -d " " -f 17 | uniq | xargs -r sha1sum
else
tail -50 COOJA.log ;
tail -50 $BASENAME.log ;
fi;
mv COOJA.testlog $BASENAME.$RANDOMSEED.faillog