From 04052f96e1385405787356f0955afadd73d8f029 Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 24 May 2001 17:15:33 +0000 Subject: Numerous new testcases from Larry Doolittle and a patch to tester.sh to avoid a bash2-ism and quote variables that contain strings. --- tests/sh.testcases | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tests/sh.testcases (limited to 'tests/sh.testcases') diff --git a/tests/sh.testcases b/tests/sh.testcases new file mode 100644 index 0000000..85d72a2 --- /dev/null +++ b/tests/sh.testcases @@ -0,0 +1,33 @@ +# try running this with bash, ksh, ash, and hush. +echo `echo -e foo\\\necho bar` + +echo THIS IS A TEST >foo +cat $(echo FOO | tr 'A-Z' 'a-z') +cat foo | tr 'A-Z' 'a-z' +cat $(echo FOO | tr 'A-Z' 'a-z') | tr 'A-Z' 'a-z' + +cat foo | if true; then tr 'A-Z' 'a-z'; else echo bar1; fi +cat foo | if false; then tr 'A-Z' 'a-z'; else echo bar2; fi +if true; then tr 'A-Z' 'a-z'; else echo bar3; fi for this stress test. +unset TMP +rm -f fish +TMP=fish >$TMP +ls fish + +# The following example shows that hush's parser is +# not _really_ Bourne compatible +echo "echo Hello World" >"a=b" +unset a +chmod a+x "a=b" +PATH=$PATH:. +"a=b" +echo $a + +# assuming the shell wasn't too buggy, clean up the mess +rm -f a=b fish foo -- cgit v1.1