diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-05 08:41:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-05 08:41:48 (GMT) |
commit | c3e5bfbc2575b80c409cccca04eb28b86f7b5f29 (patch) | |
tree | 679b353959d9797b0c59459c42491f6326c65a9d /tests/format.test | |
parent | d3f0e156ace281c7a483a2b3f3d209622cae4faa (diff) | |
download | tcl-c3e5bfbc2575b80c409cccca04eb28b86f7b5f29.zip tcl-c3e5bfbc2575b80c409cccca04eb28b86f7b5f29.tar.gz tcl-c3e5bfbc2575b80c409cccca04eb28b86f7b5f29.tar.bz2 |
Fix [4b12ccb3363e81b132e8dbe12aeec596102be1a8|4b12ccb336]: format/scan %llu doesn't work. Also added new test-cases showing the expected behavior.
Diffstat (limited to 'tests/format.test')
-rw-r--r-- | tests/format.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/format.test b/tests/format.test index e199398..dbf6af0 100644 --- a/tests/format.test +++ b/tests/format.test @@ -528,6 +528,12 @@ test format-17.3 {testing %ld with non-wide} {wideIs64bit} { test format-17.4 {testing %l with non-integer} { format %lf 1 } 1.000000 +test format-17.5 {testing %llu with bignum} { + format %llu 0xabcdef0123456789abcdef +} 207698809136909011942886895 +test format-17.6 {testing %llu with negative number} -body { + format %llu -1 +} -returnCodes 1 -result {unsigned bignum format is invalid} test format-18.1 {do not demote existing numeric values} { set a 0xaaaaaaaa |