Skip to content

Commit

Permalink
Merge pull request #90 from heplesser/fix89-travis-passes-inspite-errors
Browse files Browse the repository at this point in the history
Fix #89 by making `do_tests.sh` return non-zero exit code in case of failing tests
  • Loading branch information
jougs committed Aug 19, 2015
2 parents 86d1d1e + 5b7c347 commit 6c54fb4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testsuite/do_tests.sh.in
Expand Up @@ -627,4 +627,8 @@ if test "x${INFO_OS}" = xDarwin ; then
defaults write com.apple.CrashReporter DialogType "${TEST_CRSTATE}"
fi

exit 0
if test ${TEST_FAILED} -gt 0 ; then
exit 1
else
exit 0
fi

0 comments on commit 6c54fb4

Please sign in to comment.