about summary refs log tree commit diff
path: root/Test/B03print.ztst
diff options
context:
space:
mode:
Diffstat (limited to 'Test/B03print.ztst')
-rw-r--r--Test/B03print.ztst10
1 files changed, 6 insertions, 4 deletions
diff --git a/Test/B03print.ztst b/Test/B03print.ztst
index 2498b0fd8..cd23dba28 100644
--- a/Test/B03print.ztst
+++ b/Test/B03print.ztst
@@ -71,13 +71,15 @@
 0:ensure width is applied to empty param
 >abc!     !
 
- printf '%d\n' 123
+ printf '%d %d\n' 123.45 678 90.1
 0:test d format specifier
->123
+>123 678
+>90 0
 
- printf '%g\n' 123.45
+ printf '%g %g\n' 123.45 678 90.1
 0:test g format specifier
->123.45
+>123.45 678
+>90.1 0
 
  print -f 'arg: %b\n' -C2 '\x41' '\x42' '\x43'
 0:override -C when -f was given