diff options
author | Kevin B Kenny <kennykb@acm.org> | 2002-02-15 23:42:12 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2002-02-15 23:42:12 (GMT) |
commit | b5e9e40d2f0d57b15ea03e954e1c2085b9874fed (patch) | |
tree | 87a231b742d00bcbf481e3439acb70032c612370 /tests/get.test | |
parent | 097b4b7f2e14a0d47f82c9d8b7579bee651660b4 (diff) | |
download | tcl-b5e9e40d2f0d57b15ea03e954e1c2085b9874fed.zip tcl-b5e9e40d2f0d57b15ea03e954e1c2085b9874fed.tar.gz tcl-b5e9e40d2f0d57b15ea03e954e1c2085b9874fed.tar.bz2 |
Further changes to the TIP 72 patch to make it compile under VC++
Diffstat (limited to 'tests/get.test')
-rw-r--r-- | tests/get.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/get.test b/tests/get.test index a2efcea..0d9bea8 100644 --- a/tests/get.test +++ b/tests/get.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: get.test,v 1.6 2002/02/15 14:28:50 dkf Exp $ +# RCS: @(#) $Id: get.test,v 1.7 2002/02/15 23:42:12 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -48,7 +48,7 @@ test get-1.6 {Tcl_GetInt procedure} { if {wide(0x80000000) > wide(0)} { test get-1.7 {Tcl_GetInt procedure} { set x 44 - list [catch {incr x 18446744073709551616} msg] $msg $errorCode + list [catch {eval incr x 18446744073709551616} msg] $msg $errorCode } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}} test get-1.8 {Tcl_GetInt procedure} { set x 0 |