]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix bash syntax in travis_run_linux.sh.
authorYann Ylavic <ylavic@apache.org>
Fri, 11 Dec 2020 16:10:12 +0000 (16:10 +0000)
committerYann Ylavic <ylavic@apache.org>
Fri, 11 Dec 2020 16:10:12 +0000 (16:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1884326 13f79535-47bb-0310-9956-ffa450edef68

test/travis_run_linux.sh

index bc4133afb3bf07d40133f0664275547c1ac9d635..dde57c557fb8c83e1a772bdae86b6e3e5b80e979 100755 (executable)
@@ -161,11 +161,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