diff options
author | ericm <ericm> | 2000-01-29 00:12:46 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-01-29 00:12:46 (GMT) |
commit | bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd (patch) | |
tree | ee6d1327507899d558998df83d6f9523690a6c56 /tests/autoMkindex.test | |
parent | c6f3f1f2051c0e0663480e2fb858e9436d3adcc4 (diff) | |
download | tcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.zip tcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.tar.gz tcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.tar.bz2 |
* tests/pkg/magicchar2.tcl:
* tests/autoMkindex.test: Test for auto loader fix (bug #2480).
* library/init.tcl: auto_load was using [info commands $name] to
determine if a given command was available; if the command name
had * or [] it, this would fail because info commands uses
glob-style matching. This is fixed. (Bug #2480).
Diffstat (limited to 'tests/autoMkindex.test')
-rw-r--r-- | tests/autoMkindex.test | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/autoMkindex.test b/tests/autoMkindex.test index bab9e43..c033bf0 100644 --- a/tests/autoMkindex.test +++ b/tests/autoMkindex.test @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: autoMkindex.test,v 1.9 2000/01/28 16:38:34 ericm Exp $ +# RCS: @(#) $Id: autoMkindex.test,v 1.10 2000/01/29 00:12:46 ericm Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -198,6 +198,18 @@ test autoMkindex-5.1 {escape magic tcl chars in general code} { } set result } {set auto_index(testProc) [list source [file join $dir pkg magicchar.tcl]]} +test autoMkindex-5.2 {correctly locate auto loaded procs with []} { + file delete tclIndex + set res {} + if { ![catch {auto_mkindex . pkg/magicchar2.tcl}] } { + # Make a slave interp to test the autoloading + set c [interp create] + $c eval {lappend auto_path [pwd]} + set res [$c eval {catch {{[magic mojo proc]}}}] + interp delete $c + } + set res +} 0 # Clean up. |