You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2021/01/17 23:56:55 UTC

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

Author: covener
Date: Sun Jan 17 23:56:55 2021
New Revision: 1885632

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

other half of command


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:r1885630-1885631

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=1885632&r1=1885631&r2=1885632&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 23:56:55 2021
@@ -156,7 +156,8 @@ if ! test -v SKIP_TESTING; then
         fi
     fi
 
-    for core in `ls test/perl-framework/t/core test/perl-framework/t/core.* 2>/dev/null`; do
+    shopt -s nullglob 
+    for core in test/perl-framework/t/core* ; do
         gdb -ex 'thread apply all backtrace' -batch ./httpd "$core"
         RV=5
     done