summaryrefslogtreecommitdiff
path: root/shell/hush_test
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-15 00:11:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-15 00:11:22 +0000
commit8f0c89e05a7b52f8c5ae7b451de6fd50732aeb45 (patch)
tree9bf309fce9eff03da8980e84d3de5741627bf96d /shell/hush_test
parentbc7177187f6b4f32c2f9562358294dfc7b521f67 (diff)
downloadbusybox-w32-1_13_4.tar.gz
busybox-w32-1_13_4.tar.bz2
busybox-w32-1_13_4.zip
apply post-1.13.3 fixes, bump version to 1.13.41_13_4
Diffstat (limited to 'shell/hush_test')
-rw-r--r--shell/hush_test/hush-parsing/starquoted2.right1
-rwxr-xr-xshell/hush_test/hush-parsing/starquoted2.tests3
2 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush_test/hush-parsing/starquoted2.right b/shell/hush_test/hush-parsing/starquoted2.right
index 46f24369e..f4624dad5 100644
--- a/shell/hush_test/hush-parsing/starquoted2.right
+++ b/shell/hush_test/hush-parsing/starquoted2.right
@@ -1,2 +1,3 @@
1Should be printed 1Should be printed
2Should be printed 2Should be printed
3Empty:
diff --git a/shell/hush_test/hush-parsing/starquoted2.tests b/shell/hush_test/hush-parsing/starquoted2.tests
index 782d71b88..3475edeb2 100755
--- a/shell/hush_test/hush-parsing/starquoted2.tests
+++ b/shell/hush_test/hush-parsing/starquoted2.tests
@@ -12,3 +12,6 @@ for a in "$@"""; do echo Should not be printed; done
12for a in """$@"; do echo Should not be printed; done 12for a in """$@"; do echo Should not be printed; done
13for a in """$@"''"$@"''; do echo Should not be printed; done 13for a in """$@"''"$@"''; do echo Should not be printed; done
14for a in ""; do echo Should be printed; done 14for a in ""; do echo Should be printed; done
15
16# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\\n" twice:
17printf "Empty:%s\\n" "$@"