summaryrefslogtreecommitdiffstats
path: root/tests/string.test
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-05-10 18:33:37 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-05-10 18:33:37 (GMT)
commit76e3b5eed61a674bce7f9c1e18380842dcff3fbf (patch)
tree2f108341f2c542f48532e6057d79bfa551a4245f /tests/string.test
parent5b510b75ec4a1d6fb55691bcf55dbf4b0b936624 (diff)
downloadtcl-76e3b5eed61a674bce7f9c1e18380842dcff3fbf.zip
tcl-76e3b5eed61a674bce7f9c1e18380842dcff3fbf.tar.gz
tcl-76e3b5eed61a674bce7f9c1e18380842dcff3fbf.tar.bz2
Merged kennykb-numerics-branch back to the head; TIPs 132 and 232
Diffstat (limited to 'tests/string.test')
-rw-r--r--tests/string.test7
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