diff options
Diffstat (limited to 'shell/hush_test/hush-parsing/starquoted2.tests')
-rwxr-xr-x | shell/hush_test/hush-parsing/starquoted2.tests | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/hush_test/hush-parsing/starquoted2.tests b/shell/hush_test/hush-parsing/starquoted2.tests index 3475ede..f305c4c 100755 --- a/shell/hush_test/hush-parsing/starquoted2.tests +++ b/shell/hush_test/hush-parsing/starquoted2.tests @@ -13,5 +13,7 @@ for a in """$@"; do echo Should not be printed; done for a in """$@"''"$@"''; do echo Should not be printed; done for a in ""; do echo Should be printed; done -# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\\n" twice: +# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\n" twice: +printf 'Empty:%s\n' "$@" +printf "Empty:%s\n" "$@" printf "Empty:%s\\n" "$@" |