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 2021/01/17 22:54:00 UTC

svn commit: r1885629 - in /httpd/httpd/branches/2.4.x: ./ test/travis_run_linux.sh

Author: ylavic
Date: Sun Jan 17 22:53:59 2021
New Revision: 1885629

URL: http://svn.apache.org/viewvc?rev=1885629&view=rev
Log:
Merge r1884326 from trunk:

Fix bash syntax in travis_run_linux.sh.

Modified:
    httpd/httpd/branches/2.4.x/   (props changed)
    httpd/httpd/branches/2.4.x/test/travis_run_linux.sh

Propchange: httpd/httpd/branches/2.4.x/
------------------------------------------------------------------------------
  Merged /httpd/httpd/trunk:r1884326

Modified: httpd/httpd/branches/2.4.x/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/test/travis_run_linux.sh?rev=1885629&r1=1885628&r2=1885629&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/test/travis_run_linux.sh (original)
+++ httpd/httpd/branches/2.4.x/test/travis_run_linux.sh Sun Jan 17 22:53:59 2021
@@ -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