You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2020/12/11 16:10:13 UTC

svn commit: r1884326 - /httpd/httpd/trunk/test/travis_run_linux.sh

Author: ylavic
Date: Fri Dec 11 16:10:12 2020
New Revision: 1884326

URL: http://svn.apache.org/viewvc?rev=1884326&view=rev
Log:
Fix bash syntax in travis_run_linux.sh.

Modified:
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1884326&r1=1884325&r2=1884326&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Fri Dec 11 16:10:12 2020
@@ -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