diff options
author | kennykb <kennykb@noemail.net> | 2005-05-10 18:33:37 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2005-05-10 18:33:37 (GMT) |
commit | 12f35b8171c95899a2a2a30542cec622fc022868 (patch) | |
tree | 2f108341f2c542f48532e6057d79bfa551a4245f /tests/string.test | |
parent | b4e4f618035fce9c41fdbdb94a781e6e33d02427 (diff) | |
download | tcl-12f35b8171c95899a2a2a30542cec622fc022868.zip tcl-12f35b8171c95899a2a2a30542cec622fc022868.tar.gz tcl-12f35b8171c95899a2a2a30542cec622fc022868.tar.bz2 |
Merged kennykb-numerics-branch back to the head; TIPs 132 and 232
FossilOrigin-Name: 1cc2336920c70c6b9f7825b88dec87fc223f2c4e
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/string.test b/tests/string.test index c7a9f51..93939df 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.46 2005/04/29 20:49:44 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.47 2005/05/10 18:35:24 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -410,10 +410,7 @@ test string-6.37 {string is double, false on int overflow} { # Make it the largest int recognizable, with one more digit for overflow list [string is double -fail var [largest_int]0] $var } {0 -1} -test string-6.38 {string is double, false on underflow} { - catch {unset var} - list [string is double -fail var 123e-9999] $var -} {0 -1} +# string-6.38 removed, underflow on input is no longer an error. test string-6.39 {string is double, false} {nonPortable} { # This test is non-portable because IRIX thinks # that .e1 is a valid double - this is really a bug |