diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 18:46:55 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 18:46:55 (GMT) |
commit | ba52e24e9e0f85b51cf4cce78edac070f2303dff (patch) | |
tree | 265f6b7d4875724b3c63f34e8f8e4f30e59718e9 /tests/compExpr-old.test | |
parent | 78910273c3cf2a299dee59d26531a93f51262727 (diff) | |
download | tcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.zip tcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.tar.gz tcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.tar.bz2 |
Fix pseudo-constraint
Diffstat (limited to 'tests/compExpr-old.test')
-rw-r--r-- | tests/compExpr-old.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compExpr-old.test b/tests/compExpr-old.test index 8ce962d..c770729 100644 --- a/tests/compExpr-old.test +++ b/tests/compExpr-old.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: compExpr-old.test,v 1.10 2004/09/26 16:36:05 msofer Exp $ +# RCS: @(#) $Id: compExpr-old.test,v 1.11 2004/10/31 18:46:55 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -300,7 +300,7 @@ test compExpr-old-9.4 {CompileRelationalExpr: just shift expr} {expr {1<<3}} 8 # The following test is different for 32-bit versus 64-bit # architectures because LONG_MIN is different -if {0x80000000 > 0} { +if {int(0x80000000) > 0} { test compExpr-old-9.5 {CompileRelationalExpr: shift expr producing LONG_MIN} {nonPortable} { expr {1<<63} } -9223372036854775808 |