diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2002-02-15 14:28:47 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2002-02-15 14:28:47 (GMT) |
| commit | c69f23726dc970b2916a96f57b171e1ebc697e60 (patch) | |
| tree | edaf81ee6d40edeacc9f3e2093ddcb2ba302c620 /tests/string.test | |
| parent | 44653d205ea98aa42a7cf448a6647158a7da51a4 (diff) | |
| download | tcl-c69f23726dc970b2916a96f57b171e1ebc697e60.zip tcl-c69f23726dc970b2916a96f57b171e1ebc697e60.tar.gz tcl-c69f23726dc970b2916a96f57b171e1ebc697e60.tar.bz2 | |
TIP#72 implementation. See ChangeLog for details.
This version builds clean on Solaris/SPARC, with GCC and CC, both with and
without threads and both in 32-bit and 64-bit mode.
Diffstat (limited to 'tests/string.test')
| -rw-r--r-- | tests/string.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/string.test b/tests/string.test index c66390f..8cc5e00 100644 --- a/tests/string.test +++ b/tests/string.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: string.test,v 1.32 2002/02/07 00:51:55 hobbs Exp $ +# RCS: @(#) $Id: string.test,v 1.33 2002/02/15 14:28:50 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -274,7 +274,7 @@ proc largest_int {} { # so we can test for overflow properly below on >32 bit systems set int 1 set exp 7; # assume we get at least 8 bits - while {$int > 0} { set int [expr {1 << [incr exp]}] } + while {$int > 0} { set int [expr {wide(1) << [incr exp]}] } return [expr {$int-1}] } |
