Merge pull request #62 from adamdunkels/fix-travis

Fix false positive travis build problems
This commit is contained in:
Nicolas Tsiftes 2012-12-18 08:53:58 -08:00
commit b8f79b9da3

View file

@ -25,10 +25,11 @@ script:
- "make -C regression-tests/??-$BUILD_TYPE RUNALL=true summary"
after_script:
## Print a basic summary in unix style
## Print a basic summary
- "echo 'Summary:'; cat regression-tests/??-$BUILD_TYPE/summary"
- "FAILS=`grep -c -i 'fail' regression-tests/??-$BUILD_TYPE/summary`"
## This will detect whether the build should pass or fail
- "test `grep -c -i 'fail' regression-tests/??-$BUILD_TYPE/summary` -eq 0"
- "test $FAILS -eq 0; exit $?"
env: