You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/06/09 09:57:09 UTC

svn commit: r1878654 - /httpd/httpd/trunk/test/travis_run_linux.sh

Author: jorton
Date: Tue Jun  9 09:57:09 2020
New Revision: 1878654

URL: http://svn.apache.org/viewvc?rev=1878654&view=rev
Log:
Tail more error_log for failed test suite runs in Travis. [skip ci]

Modified:
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1878654&r1=1878653&r2=1878654&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Tue Jun  9 09:57:09 2020
@@ -91,7 +91,7 @@ if ! test -v SKIP_TESTING; then
     fi
 
     if test $RV -ne 0 -a -r test/perl-framework/t/logs/error_log; then
-        tail test/perl-framework/t/logs/error_log
+        tail -n200 test/perl-framework/t/logs/error_log
     fi
 
     exit $RV