From f66567e8fa29979d36e83403c77e98228abf81da Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 27 Nov 2020 12:37:12 +0000 Subject: [PATCH] Stop testing if a core dump was generated during the main test suite run. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883854 13f79535-47bb-0310-9956-ffa450edef68 --- test/travis_run_linux.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 20e536f8e6a..390a8d2e4a6 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -96,6 +96,12 @@ if ! test -v SKIP_TESTING; then popd fi + # Skip further testing if a core dump was created during the test + # suite run above. + if test $RV -eq 0 -a -f test/perl-framework/t/core; then + RV=4 + fi + if test -v TEST_SSL -a $RV -eq 0; then pushd test/perl-framework for cache in shmcb redis:localhost:6379 memcache:localhost:11211; do -- 2.47.3