From 40b8cb4e81fe2c1ad9838fdc78e6da46ce848278 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 2 Sep 2020 12:31:30 +0000 Subject: [PATCH] Catch assert() failures. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881396 13f79535-47bb-0310-9956-ffa450edef68 --- test/travis_run_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index ad2cde3d851..20e536f8e6a 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -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 -- 2.47.3