hush: fix handling of } which is not a closing one in { cmd; }
[oweals/busybox.git] / shell / hush_test / hush-parsing / quote3.tests
1 empty=''
2
3 echo 'Testing: in ""'
4 for a in ""; do echo ".$a."; done
5
6 echo 'Testing: in '"''"
7 for a in ''; do echo ".$a."; done
8
9 echo 'Testing: in $empty'
10 for a in $empty; do echo ".$a."; done
11
12 echo 'Testing: in $empty""'
13 for a in $empty""; do echo ".$a."; done
14
15 echo 'Testing: in $empty'"''"
16 for a in $empty''; do echo ".$a."; done
17
18 echo 'Testing: in "$empty"'
19 for a in "$empty"; do echo ".$a."; done
20
21 echo Finished