diff options
author | dgp <dgp@noemail.net> | 2005-10-21 20:44:17 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2005-10-21 20:44:17 (GMT) |
commit | 0dad0e7935ef875a13e08476c01ac4f6ed859159 (patch) | |
tree | 5b0d8ebe3be5e518d5852ae32603466b4dec947d /tests/string.test | |
parent | b62320a81adb7c0459bdc7a7fd11d92d7fbea05b (diff) | |
download | tcl-0dad0e7935ef875a13e08476c01ac4f6ed859159.zip tcl-0dad0e7935ef875a13e08476c01ac4f6ed859159.tar.gz tcl-0dad0e7935ef875a13e08476c01ac4f6ed859159.tar.bz2 |
Marked several failing tests as "knownBug" until they can be updated.
FossilOrigin-Name: b203d2898fc51fc9ca8f506e0be80159fee6da57
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/string.test b/tests/string.test index 1969c59..8de1367 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.52 2005/10/08 14:42:54 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.53 2005/10/21 20:44:21 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -406,7 +406,7 @@ test string-6.35 {string is double, false} { test string-6.36 {string is double, false} { list [string is double -fail var "\n"] $var } {0 0} -test string-6.37 {string is double, false on int overflow} { +test string-6.37 {string is double, false on int overflow} knownBug { # Make it the largest int recognizable, with one more digit for overflow list [string is double -fail var [largest_int]0] $var } {0 -1} |