From 60c5e7ac83a61a118f7c0a7ea7d2f1905036e0a5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 9 Feb 2016 11:44:40 -0800 Subject: 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 Signed-off-by: Simon Horman --- .travis/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/build.sh b/.travis/build.sh index 62281dbba..47ad93a4e 100755 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -92,7 +92,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 -- cgit v1.2.1