From e711176bde273f0727db8e4ee910e33d132d5316 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Mon, 20 Sep 2021 15:08:32 +0000 Subject: [PATCH] test -n wants a single argument. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893473 13f79535-47bb-0310-9956-ffa450edef68 --- test/travis_run_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3