summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-07-15 18:59:14 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-07-15 18:59:14 (GMT)
commita13bb8b0ca65832a5ec1d64055a09f3dec4af876 (patch)
treef9c5a0e49a78023dd16dafe65eda2d6f7d5d7306 /tests
parenta8127853997aa42f5e2152173680885d2161e5e2 (diff)
parent5a82fc544eb4e25be7b1a5684cbe18118ec0b558 (diff)
downloadtcl-a13bb8b0ca65832a5ec1d64055a09f3dec4af876.zip
tcl-a13bb8b0ca65832a5ec1d64055a09f3dec4af876.tar.gz
tcl-a13bb8b0ca65832a5ec1d64055a09f3dec4af876.tar.bz2
Merge 8.7
Diffstat (limited to 'tests')
-rw-r--r--tests/autoMkindex.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/autoMkindex.test b/tests/autoMkindex.test
index b42d50d..85f7c0b 100644
--- a/tests/autoMkindex.test
+++ b/tests/autoMkindex.test
@@ -164,17 +164,17 @@ test autoMkindex-2.1 {commands on the autoload path can be imported} -setup {
# Test auto_mkindex hooks
-# Slave hook executes interesting code in the interp used to watch code.
-test autoMkindex-3.1 {slaveHook} -setup {
+# Child hook executes interesting code in the interp used to watch code.
+test autoMkindex-3.1 {childHook} -setup {
file delete tclIndex
} -body {
- auto_mkindex_parser::slavehook {
+ auto_mkindex_parser::childhook {
_%@namespace eval ::blt {
proc foo {} {}
_%@namespace export foo
}
}
- auto_mkindex_parser::slavehook { _%@namespace import -force ::blt::* }
+ auto_mkindex_parser::childhook { _%@namespace import -force ::blt::* }
auto_mkindex . autoMkindex.tcl
file exists tclIndex
} -cleanup {