diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-10-27 17:55:14 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-10-27 17:55:14 (GMT) |
commit | 4be4200c00d20a630a3a8cadb0ebedaaf481b26f (patch) | |
tree | d2331015fa7b4dd2719af0b18a730f019c20f23f /tests | |
parent | eac8637a05c20c906f723ad02ade6d3ca62dce8a (diff) | |
download | tcl-4be4200c00d20a630a3a8cadb0ebedaaf481b26f.zip tcl-4be4200c00d20a630a3a8cadb0ebedaaf481b26f.tar.gz tcl-4be4200c00d20a630a3a8cadb0ebedaaf481b26f.tar.bz2 |
fixed format-19.1 for 64 bit machines
Diffstat (limited to 'tests')
-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 6338d0c..3ca51ac 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.11.2.5 2004/10/27 15:39:36 kennykb Exp $ +# RCS: @(#) $Id: format.test,v 1.11.2.6 2004/10/27 17:55:14 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -538,10 +538,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} |