hush_test: add some pathological compound list tests
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
12bcc76e9b
commit
342a63d659
14
shell/hush_test/hush-misc/compound.right
Normal file
14
shell/hush_test/hush-misc/compound.right
Normal file
@ -0,0 +1,14 @@
|
||||
new group
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
new group
|
||||
new group
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
21
shell/hush_test/hush-misc/compound.tests
Normal file
21
shell/hush_test/hush-misc/compound.tests
Normal file
@ -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; (:;);
|
Loading…
Reference in New Issue
Block a user