diff options
author | hobbs <hobbs> | 1999-12-04 06:16:48 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-04 06:16:48 (GMT) |
commit | 8bd88ae75ebf3df12baf9472747baf999a089c8c (patch) | |
tree | de4d563d31e6b705edb459823af308d53d953c2b /tests/env.test | |
parent | 0cbb9c47d7cd5a71ca1189ab216bf3ded3800278 (diff) | |
download | tcl-8bd88ae75ebf3df12baf9472747baf999a089c8c.zip tcl-8bd88ae75ebf3df12baf9472747baf999a089c8c.tar.gz tcl-8bd88ae75ebf3df12baf9472747baf999a089c8c.tar.bz2 |
* tests/env.test: removed knownBug limitation from working test
* tests/all.tcl: ensured that ::tcltest::testsDirectory would be
set to an absolute path
* tests/expr-old.test:
* tests/parseExpr.test:
* tests/string.test:
* generic/tclGet.c:
* generic/tclInt.h:
* generic/tclObj.c:
* generic/tclParseExpr.c:
* generic/tclUtil.c:
* generic/tclExecute.c: added TclCheckBadOctal routine to enhance
error message checking for when users use invalid octal numbers
(like 08), as well as replumbed the Expr*Funcs with a new
VerifyExprObjType to simplify type handling.
Diffstat (limited to 'tests/env.test')
-rw-r--r-- | tests/env.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/env.test b/tests/env.test index 087a23b..99a6a89 100644 --- a/tests/env.test +++ b/tests/env.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: env.test,v 1.11 1999/09/21 06:37:26 hobbs Exp $ +# RCS: @(#) $Id: env.test,v 1.12 1999/12/04 06:16:48 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -216,7 +216,7 @@ test env-5.3 {corner cases - unset the env in master should unset child} {} { interp delete i set result } {a 1} -test env-5.4 {corner cases - unset the env array} {knownBug} { +test env-5.4 {corner cases - unset the env array} {} { # The info exist command should be in synch with the env array. # Know Bug: 1737 |