diff options
Diffstat (limited to 'tests/get.test')
-rw-r--r-- | tests/get.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/get.test b/tests/get.test index ceed09d..46301e8 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.10 2005/07/27 18:12:43 dgp Exp $ +# RCS: @(#) $Id: get.test,v 1.11 2005/07/28 18:42:32 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -74,9 +74,9 @@ test get-2.2 {Tcl_GetInt procedure} { test get-2.3 {Tcl_GetInt procedure} { list [catch {format %g clip} msg] $msg } {1 {expected floating-point number but got "clip"}} -test get-2.4 {Tcl_GetInt procedure} {nonPortable} { - list [catch {format %g .000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001} msg] $msg $errorCode -} {1 {floating-point value too small to represent} {ARITH UNDERFLOW {floating-point value too small to represent}}} +test get-2.4 {Tcl_GetInt procedure} { + format %g .000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 +} 0 test get-3.1 {Tcl_GetInt(FromObj), bad numbers} { # SF bug #634856 |