]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1884326 from trunk:
authorYann Ylavic <ylavic@apache.org>
Sun, 17 Jan 2021 22:53:59 +0000 (22:53 +0000)
committerYann Ylavic <ylavic@apache.org>
Sun, 17 Jan 2021 22:53:59 +0000 (22:53 +0000)
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

test/travis_run_linux.sh

index d86b751bea2cb217e3ac71f97a8898123e6ced17..30f3cae9df733fbcfa41c6f79f3e362c1bf41ff8 100755 (executable)
@@ -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