diff options
author | kennykb <kennykb@noemail.net> | 2002-02-15 23:42:11 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2002-02-15 23:42:11 (GMT) |
commit | fcffc703fd991f594e64d5ec676065a33c91bcc8 (patch) | |
tree | 87a231b742d00bcbf481e3439acb70032c612370 /tests/get.test | |
parent | afb5a69112019f2bde36ef53a9c4e79a0a021f77 (diff) | |
download | tcl-fcffc703fd991f594e64d5ec676065a33c91bcc8.zip tcl-fcffc703fd991f594e64d5ec676065a33c91bcc8.tar.gz tcl-fcffc703fd991f594e64d5ec676065a33c91bcc8.tar.bz2 |
Further changes to the TIP 72 patch to make it compile under VC++
FossilOrigin-Name: ffd6a7d7738c855d3f78a3b416a52091432c6b02
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 |