diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-07 16:06:52 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-07 16:06:52 (GMT) |
commit | 871b84cdfe3b833bb5d1496f8d8bc70013257619 (patch) | |
tree | b71c71442b752790c7d30cdc1fbd4b44cb88095e /tests/format.test | |
parent | 6bdb3d6484f629725b9eaf6638099976ad8717c7 (diff) | |
download | tcl-871b84cdfe3b833bb5d1496f8d8bc70013257619.zip tcl-871b84cdfe3b833bb5d1496f8d8bc70013257619.tar.gz tcl-871b84cdfe3b833bb5d1496f8d8bc70013257619.tar.bz2 |
* generic/tclStringObj.c (Tcl_AppendFormatToObj):
Fix [format {% d}] so that it behaves the same way as in 8.4 and
as C's printf().
* tests/format.test: Add a test for '% d' and '%+d'.
Diffstat (limited to 'tests/format.test')
-rw-r--r-- | tests/format.test | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/format.test b/tests/format.test index b050fc3..36222a5 100644 --- a/tests/format.test +++ b/tests/format.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: format.test,v 1.25 2008/01/10 16:09:23 dgp Exp $ +# RCS: @(#) $Id: format.test,v 1.25.2.1 2008/04/07 16:07:02 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -496,6 +496,12 @@ test format-15.3 {testing %0..s 0 padding for chars/strings} { test format-15.4 {testing %0..s 0 padding for chars/strings} { format %05c 61 } {0000=} +test format-15.5 {testing %d space padding for integers} { + format "(% 1d) (% 1d)" 10 -10 +} {( 10) (-10)} +test format-15.6 {testing %d plus padding for integers} { + format "(%+1d) (%+1d)" 10 -10 +} {(+10) (-10)} set a "0123456789" set b "" |