hush: tweak testsuite
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 20 Mar 2009 12:12:33 +0000 (12:12 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 20 Mar 2009 12:12:33 +0000 (12:12 -0000)
shell/hush_test/hush-parsing/starquoted2.right
shell/hush_test/hush-parsing/starquoted2.tests

index f4624dad59dbd267f5ce85322921b9258c48dd1f..e1562ed6d9208484d94e63bcf67f67dc538cb237 100644 (file)
@@ -1,3 +1,5 @@
 Should be printed
 Should be printed
 Empty:
+Empty:
+Empty:
index 3475edeb241b3b7141a8eae13b321269dd074d67..f305c4cd99c4865bf60eea1f33923d1e475845df 100755 (executable)
@@ -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" "$@"