summaryrefslogtreecommitdiffstats
path: root/tests/expr-old.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-31 18:46:55 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-31 18:46:55 (GMT)
commitba52e24e9e0f85b51cf4cce78edac070f2303dff (patch)
tree265f6b7d4875724b3c63f34e8f8e4f30e59718e9 /tests/expr-old.test
parent78910273c3cf2a299dee59d26531a93f51262727 (diff)
downloadtcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.zip
tcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.tar.gz
tcl-ba52e24e9e0f85b51cf4cce78edac070f2303dff.tar.bz2
Fix pseudo-constraint
Diffstat (limited to 'tests/expr-old.test')
-rw-r--r--tests/expr-old.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/expr-old.test b/tests/expr-old.test
index 4025839..f5b17de 100644
--- a/tests/expr-old.test
+++ b/tests/expr-old.test
@@ -13,7 +13,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: expr-old.test,v 1.20 2004/07/03 21:36:33 msofer Exp $
+# RCS: @(#) $Id: expr-old.test,v 1.21 2004/10/31 18:48:16 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -729,7 +729,7 @@ test expr-old-32.24 {math functions in expressions} {
# The following test is different for 32-bit versus 64-bit architectures.
-if {0x80000000 > 0} {
+if {int(0x80000000) > 0} {
test expr-old-32.25a {math functions in expressions} {nonPortable} {
list [catch {expr abs(0x8000000000000000)} msg] $msg
} {1 {integer value too large to represent}}