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:55:51 UTC

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

Author: covener
Date: Sun Jan 17 23:55:51 2021
New Revision: 1885630

URL: http://svn.apache.org/viewvc?rev=1885630&view=rev
Log:
go back globbing butadd nullglob

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=1885630&r1=1885629&r2=1885630&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Sun Jan 17 23:55:51 2021
@@ -178,7 +178,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* 2>/dev/null`; do
         gdb -ex 'thread apply all backtrace' -batch ./httpd "$core"
         RV=5
     done



Re: svn commit: r1885630 - /httpd/httpd/trunk/test/travis_run_linux.sh

Posted by Eric Covener <co...@gmail.com>.
whoops, I was a result behind and thought it was failing.

On Sun, Jan 17, 2021 at 6:55 PM <co...@apache.org> wrote:
>
> Author: covener
> Date: Sun Jan 17 23:55:51 2021
> New Revision: 1885630
>
> URL: http://svn.apache.org/viewvc?rev=1885630&view=rev
> Log:
> go back globbing butadd nullglob
>
> 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=1885630&r1=1885629&r2=1885630&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/test/travis_run_linux.sh (original)
> +++ httpd/httpd/trunk/test/travis_run_linux.sh Sun Jan 17 23:55:51 2021
> @@ -178,7 +178,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* 2>/dev/null`; do
>          gdb -ex 'thread apply all backtrace' -batch ./httpd "$core"
>          RV=5
>      done
>
>


-- 
Eric Covener
covener@gmail.com