From: Ben Pfaff Date: Tue, 9 Feb 2016 19:44:40 +0000 (-0800) Subject: travis: Automatically recheck failed tests. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=655306c825a8296573f9ee9f628affe9c4345c5f travis: Automatically recheck failed tests. This should make the automatic testsuite more reliable on Travis. It's better to fix tests to be more reliable, of course, but in practie it's difficult to make all of them 100% reliable. Signed-off-by: Ben Pfaff Acked-by: Andy Zhou --- diff --git a/.travis/build.sh b/.travis/build.sh index 4df618ba0..ef712d0bd 100755 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -99,7 +99,7 @@ else fi if [ "$TESTSUITE" ] && [ "$CC" != "clang" ]; then - if ! make distcheck; then + if ! make distcheck RECHECK=yes; then # testsuite.log is necessary for debugging. cat */_build/tests/testsuite.log exit 1