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/09/02 12:31:31 UTC

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

Author: jorton
Date: Wed Sep  2 12:31:30 2020
New Revision: 1881396

URL: http://svn.apache.org/viewvc?rev=1881396&view=rev
Log:
Catch assert() failures.

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=1881396&r1=1881395&r2=1881396&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Wed Sep  2 12:31:30 2020
@@ -129,7 +129,7 @@ if ! test -v SKIP_TESTING; then
     # "pool concurrency check": printed by APR built with
     # --enable-thread-debug when an APR pool concurrency check aborts
 
-    for phrase in 'Segmentation fault' 'glibc detected' 'pool concurrency check:'; do
+    for phrase in 'Segmentation fault' 'glibc detected' 'pool concurrency check:' 'Assertion.*failed'; do
         if grep -q "$phrase" test/perl-framework/t/logs/error_log; then
             grep --color=always -C5 "$phrase" test/perl-framework/t/logs/error_log
             RV=2