From 342a63d659ed41b0fe9f412eb75d495e64cc2096 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 21 May 2009 18:35:37 -0400 Subject: [PATCH] hush_test: add some pathological compound list tests Signed-off-by: Mike Frysinger --- shell/hush_test/hush-misc/compound.right | 14 ++++++++++++++ shell/hush_test/hush-misc/compound.tests | 21 +++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 shell/hush_test/hush-misc/compound.right create mode 100644 shell/hush_test/hush-misc/compound.tests diff --git a/shell/hush_test/hush-misc/compound.right b/shell/hush_test/hush-misc/compound.right new file mode 100644 index 000000000..757d42fe4 --- /dev/null +++ b/shell/hush_test/hush-misc/compound.right @@ -0,0 +1,14 @@ +new group +0 +1 +2 +3 +4 +5 +6 +new group +new group +0 +1 +2 +3 diff --git a/shell/hush_test/hush-misc/compound.tests b/shell/hush_test/hush-misc/compound.tests new file mode 100644 index 000000000..a5e85c3d5 --- /dev/null +++ b/shell/hush_test/hush-misc/compound.tests @@ -0,0 +1,21 @@ +echo new group +echo 0; { :; } +echo 1; { : ;} +echo 2; ({ :; }) +echo 3; ({ : ;}) +echo 4; ( : ) +echo 5; ( :; ) +echo 6; ( : ;) +# not sure if POSIX requires these, but bash accepts them ... +#echo 7; {( : )} +#echo 8; {( :; )} +#echo 9; {( : ;)} + +echo new group +#echo 0; {(:);} + +echo new group +echo 0; (:) +echo 1; (:;) +echo 2; (:); +echo 3; (:;);