]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
test -n wants a single argument.
authorYann Ylavic <ylavic@apache.org>
Mon, 20 Sep 2021 15:08:32 +0000 (15:08 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 20 Sep 2021 15:08:32 +0000 (15:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893473 13f79535-47bb-0310-9956-ffa450edef68

test/travis_run_linux.sh

index 2a1f7f1a7d5518619923aa163b56752d2e1c80db..a338b64d861bea6a3257264f607dd0c9f15ce584 100755 (executable)
@@ -108,7 +108,7 @@ if ! test -v SKIP_TESTING; then
 
     # Skip further testing if a core dump was created during the test
     # suite run above.
-    if test $RV -eq 0 && test -n `ls test/perl-framework/t/core{,.*} 2>/dev/null`; then
+    if test $RV -eq 0 && test -n "`ls test/perl-framework/t/core{,.*} 2>/dev/null`"; then
         RV=4
     fi