diff options
author | Joe Orton <jorton@apache.org> | 2020-09-02 14:31:30 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2020-09-02 14:31:30 +0200 |
commit | 40b8cb4e81fe2c1ad9838fdc78e6da46ce848278 (patch) | |
tree | c9a4fb046c6415d3ecec80f5120ff92b2fd6c40b /test/travis_run_linux.sh | |
parent | Fix a few warnings on 64 bits windows compilation (diff) | |
download | apache2-40b8cb4e81fe2c1ad9838fdc78e6da46ce848278.tar.xz apache2-40b8cb4e81fe2c1ad9838fdc78e6da46ce848278.zip |
Catch assert() failures.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881396 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_run_linux.sh')
-rwxr-xr-x | test/travis_run_linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index ad2cde3d85..20e536f8e6 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 |