From 4f6aea807b0cd411cbc6f9d3b79e8583d6bd532b Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 24 May 2001 23:05:13 +0000 Subject: [PATCH] More shell / quoting testcases from Larry. --- tests/sh.testcases | 23 ++++++++++++++++++++++- tests/testcases | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/tests/sh.testcases b/tests/sh.testcases index 85d72a200..9b5c8da59 100644 --- a/tests/sh.testcases +++ b/tests/sh.testcases @@ -1,4 +1,19 @@ # try running this with bash, ksh, ash, and hush. + +# simple quoting rules. +echo a b +echo "a b" +echo a "" b +echo a '' b +echo hello? +echo "hello?" +echo t* hello +echo t\* hello + +# quick and painless exit for lash +if false; then true; exit; fi + +# fairly simple command substitution echo `echo -e foo\\\necho bar` echo THIS IS A TEST >foo @@ -13,7 +28,13 @@ if false; then tr 'A-Z' 'a-z'; else echo bar4; fi $TMP +ls fish + +# ash, lash, and hush do not create fish; bash and ksh do. # Thanks to Tapani Tarvainen for this stress test. unset TMP rm -f fish diff --git a/tests/testcases b/tests/testcases index 64d406a8a..5043c309e 100644 --- a/tests/testcases +++ b/tests/testcases @@ -306,7 +306,7 @@ sed -e '/test/s/dangerous/PELIGROSO/' testcases sh -c "echo a b c" sh -c ">" sh -c "a" -#sh sh.testcases +sh sh.testcases # sleep - can't test: produces no output