From: Joe Orton Date: Fri, 27 Nov 2020 12:37:12 +0000 (+0000) Subject: Stop testing if a core dump was generated during the main test suite run. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f66567e8fa29979d36e83403c77e98228abf81da;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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