ash: add all hush parsing tests to ast tests
All pass. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
10
shell/ash_test/ash-parsing/groups_and_keywords1.tests
Executable file
10
shell/ash_test/ash-parsing/groups_and_keywords1.tests
Executable file
@@ -0,0 +1,10 @@
|
||||
echo "Semicolons after } can be omitted 1:"
|
||||
if { echo foo; } then { echo bar; } fi
|
||||
|
||||
echo "Semicolons after } can be omitted 2:"
|
||||
while { echo foo; } do { echo bar; break; } done
|
||||
|
||||
echo "Semicolons after fi can be omitted:"
|
||||
while if echo foo; then echo bar; fi do echo baz; break; done
|
||||
|
||||
echo Done:$?
|
Reference in New Issue
Block a user