diff options
author | hobbs <hobbs> | 2000-01-12 11:13:25 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-12 11:13:25 (GMT) |
commit | f0c936b8a5365ec18f126e2c15715509d64bb440 (patch) | |
tree | 82af689b665b52d5f4be35155ac4d08136341e92 /tests/namespace.test | |
parent | 406d6b83a7c5904f8364bca9dafa894901281bc2 (diff) | |
download | tcl-f0c936b8a5365ec18f126e2c15715509d64bb440.zip tcl-f0c936b8a5365ec18f126e2c15715509d64bb440.tar.gz tcl-f0c936b8a5365ec18f126e2c15715509d64bb440.tar.bz2 |
* tests/info.test:
* generic/tclCmdIL.c: fixed 'info procs ::namesp::*' behavior (Dejong)
* tests/unixFCmd.test:
* unix/tclUnixFCmd.c: added support for symbolic permissions
setting in SetPermissionsAttribute (file attr $file -perm ...)
[Bug: 3970]
* tests/utf.test: fixed test that allowed \8 as octal value
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index c954aa2..5843187 100644 --- a/tests/namespace.test +++ b/tests/namespace.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: namespace.test,v 1.6 1999/06/26 20:55:08 rjohnson Exp $ +# RCS: @(#) $Id: namespace.test,v 1.7 2000/01/12 11:13:25 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -675,8 +675,8 @@ test namespace-21.6 {NamespaceChildrenCmd, glob-style pattern given} { } {::test_ns_1::test_ns_foo} test namespace-21.7 {NamespaceChildrenCmd, glob-style pattern given} { namespace eval test_ns_1::test_ns_foo {} - namespace children test_ns_1 test* -} {::test_ns_1::test_ns_2 ::test_ns_1::test_ns_foo} + lsort [namespace children test_ns_1 test*] +} [lsort {::test_ns_1::test_ns_2 ::test_ns_1::test_ns_foo}] test namespace-22.1 {NamespaceCodeCmd, bad args} { catch {eval namespace delete [namespace children :: test_ns_*]} |