summaryrefslogtreecommitdiffstats
path: root/tests/format.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-10-13 21:49:46 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-10-13 21:49:46 (GMT)
commit4c4dbba0fe0d26097c20ac8bc74b873c7adbb28c (patch)
tree8383b86292d8351fc8abb7d53c62cc4ee341884d /tests/format.test
parentb46ac47858df6ae1a647fde89d9f054e9bfb23f7 (diff)
downloadtcl-4c4dbba0fe0d26097c20ac8bc74b873c7adbb28c.zip
tcl-4c4dbba0fe0d26097c20ac8bc74b873c7adbb28c.tar.gz
tcl-4c4dbba0fe0d26097c20ac8bc74b873c7adbb28c.tar.bz2
Test updates from [Bug 1284178]
Diffstat (limited to 'tests/format.test')
-rw-r--r--tests/format.test14
1 files changed, 9 insertions, 5 deletions
diff --git a/tests/format.test b/tests/format.test
index 86f4665..f99861d 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.22 2005/10/08 14:42:54 dgp Exp $
+# RCS: @(#) $Id: format.test,v 1.23 2005/10/13 21:49:46 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -381,6 +381,10 @@ test format-10.4 {"h" format specifier} {
# Bug 1154163: This is minimal behaviour for %hx specifier!
format %hx 1
} 1
+test format-10.5 {"h" format specifier} {
+ # Bug 1284178: Highly out-of-range values shouldn't cause errors
+ format %hu 0x100000000
+} 0
test format-11.1 {XPG3 %$n specifiers} {
format {%2$d %1$d} 4 5
@@ -509,8 +513,8 @@ for {set i 290} {$i < 400} {incr i} {
[expr {wide(0x80000000) != int(0x80000000)}]
test format-17.1 {testing %d with wide} {wideIs64bit wideBiggerThanInt} {
- list [catch {format %d 7810179016327718216} msg] $msg
-} {1 {integer value too large to represent}}
+ format %d 7810179016327718216
+} 1819043144
test format-17.2 {testing %ld with wide} {wideIs64bit} {
format %ld 7810179016327718216
} 7810179016327718216
@@ -541,8 +545,8 @@ test format-18.1 {do not demote existing numeric values} {
test format-18.2 {do not demote existing numeric values} {wideBiggerThanInt} {
set a [expr {0xaaaaaaaaaa + 1}]
set b 0xaaaaaaaaab
- list [catch {format %08x $a} msg] $msg [expr {$a == $b}]
-} {1 {integer value too large to represent} 1}
+ list [format %08x $a] [expr {$a == $b}]
+} {aaaaaaab 1}
test format-19.1 {
regression test - tcl-core message by Brian Griffin on