hush: expand quote3.tests and move from hush-bugs to hush-parsing
This commit is contained in:
21
shell/hush_test/hush-parsing/quote3.tests
Executable file
21
shell/hush_test/hush-parsing/quote3.tests
Executable file
@@ -0,0 +1,21 @@
|
||||
empty=''
|
||||
|
||||
echo 'Testing: in ""'
|
||||
for a in ""; do echo ".$a."; done
|
||||
|
||||
echo 'Testing: in '"''"
|
||||
for a in ''; do echo ".$a."; done
|
||||
|
||||
echo 'Testing: in $empty'
|
||||
for a in $empty; do echo ".$a."; done
|
||||
|
||||
echo 'Testing: in $empty""'
|
||||
for a in $empty""; do echo ".$a."; done
|
||||
|
||||
echo 'Testing: in $empty'"''"
|
||||
for a in $empty''; do echo ".$a."; done
|
||||
|
||||
echo 'Testing: in "$empty"'
|
||||
for a in "$empty"; do echo ".$a."; done
|
||||
|
||||
echo Finished
|
||||
Reference in New Issue
Block a user