aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/compound.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/compound.tests')
-rw-r--r--shell/hush_test/hush-misc/compound.tests21
1 files changed, 21 insertions, 0 deletions
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; (:;);