From: Yann Ylavic Date: Mon, 20 Sep 2021 15:08:32 +0000 (+0000) Subject: test -n wants a single argument. X-Git-Tag: 2.5.0-alpha2-ci-test-only~801 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e711176bde273f0727db8e4ee910e33d132d5316;p=thirdparty%2Fapache%2Fhttpd.git test -n wants a single argument. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893473 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 2a1f7f1a7d5..a338b64d861 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -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