diff options
author | kennykb <kennykb@noemail.net> | 2004-10-27 17:56:22 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2004-10-27 17:56:22 (GMT) |
commit | 07909655d7f37bc44ef0ed908fda3f202a29ce31 (patch) | |
tree | 2fe5976b2430c236fd8c75988ef56804a713a6de /tests/format.test | |
parent | 24d6a70cdd122fb745c683eec9d9aa04d80b2601 (diff) | |
download | tcl-07909655d7f37bc44ef0ed908fda3f202a29ce31.zip tcl-07909655d7f37bc44ef0ed908fda3f202a29ce31.tar.gz tcl-07909655d7f37bc44ef0ed908fda3f202a29ce31.tar.bz2 |
fixed format-19.1 for 64 bit machines
FossilOrigin-Name: a0c0a6d869b766632b6db0070f78e2f9d20043f8
Diffstat (limited to 'tests/format.test')
-rw-r--r-- | tests/format.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/format.test b/tests/format.test index fdb80e0..653ec35 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.18 2004/10/27 15:42:55 kennykb Exp $ +# RCS: @(#) $Id: format.test,v 1.19 2004/10/27 17:56:22 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -530,10 +530,10 @@ test format-18.2 {do not demote existing numeric values} {wideIntExpressions} { test format-19.1 { regression test - tcl-core message by Brian Griffin on 26 0ctober 2004 -} { +} -body { set x 0x8fedc654 list [expr { ~ $x }] [format %08x [expr { ~$x }]] -} {-2414724693 701239ab} +} -match regexp -result {-2414724693 f*701239ab} # cleanup catch {unset a} |