summaryrefslogtreecommitdiffstats
path: root/tests/format.test
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-05-14 23:04:31 (GMT)
committerdkf <dkf@noemail.net>2003-05-14 23:04:31 (GMT)
commit581e1cf8e7dea4d61f56d1325970868d77db13fe (patch)
treed39360b527f0ab6e56dcd95de8e4efd6066fb34c /tests/format.test
parent1f4027bd46e99a0472dad6d110bde9044e3b632f (diff)
downloadtcl-581e1cf8e7dea4d61f56d1325970868d77db13fe.zip
tcl-581e1cf8e7dea4d61f56d1325970868d77db13fe.tar.gz
tcl-581e1cf8e7dea4d61f56d1325970868d77db13fe.tar.bz2
Omitted constraint required for LP64 platforms.
FossilOrigin-Name: 6dae7231c22bb346bcafdd2b20e3f5a5f294c139
Diffstat (limited to 'tests/format.test')
-rw-r--r--tests/format.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/format.test b/tests/format.test
index 1e57bd4..c6d9731 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.15 2003/05/14 22:45:12 dkf Exp $
+# RCS: @(#) $Id: format.test,v 1.16 2003/05/14 23:04:32 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -522,7 +522,7 @@ test format-18.1 {do not demote existing numeric values} {
format %08x $b
lappend result [expr {$a == $b}]
} {1 1 1 1}
-test format-18.2 {do not demote existing numeric values} {
+test format-18.2 {do not demote existing numeric values} {wideIntExpressions} {
set a [expr {0xaaaaaaaaaa + 1}]
set b 0xaaaaaaaaab
list [catch {format %08x $a} msg] $msg [expr {$a == $b}]