From: Yann Ylavic Date: Sun, 17 Jan 2021 22:53:59 +0000 (+0000) Subject: Merge r1884326 from trunk: X-Git-Tag: 2.4.47~142 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=70a27d700129cefbb221dbe7ae8044d1baece410;p=thirdparty%2Fapache%2Fhttpd.git Merge r1884326 from trunk: Fix bash syntax in travis_run_linux.sh. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1885629 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index d86b751bea2..30f3cae9df7 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -156,11 +156,7 @@ if ! test -v SKIP_TESTING; then fi fi - if test -f test/perl-framework/t/core; then - gdb -ex 'thread apply all backtrace' -batch ./httpd test/perl-framework/t/core - RV=5 - fi - for core in test/perl-framework/t/core.*; do + for core in `ls test/perl-framework/t/core test/perl-framework/t/core.* 2>/dev/null`; do gdb -ex 'thread apply all backtrace' -batch ./httpd "$core" RV=5 done