From 70a27d700129cefbb221dbe7ae8044d1baece410 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Sun, 17 Jan 2021 22:53:59 +0000 Subject: [PATCH] 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 --- test/travis_run_linux.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 -- 2.47.3