summaryrefslogtreecommitdiffstats
path: root/tests/safe.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-06-22 16:02:38 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-06-22 16:02:38 (GMT)
commit0b6f67ac8fecd83b2b1d800423a25f9cc16cc01d (patch)
treef1ba9ad3eb8dd80327b177af21c9588c91862840 /tests/safe.test
parent010b2be795506ccc6a4626b8fdfffc07d24da07f (diff)
downloadtcl-0b6f67ac8fecd83b2b1d800423a25f9cc16cc01d.zip
tcl-0b6f67ac8fecd83b2b1d800423a25f9cc16cc01d.tar.gz
tcl-0b6f67ac8fecd83b2b1d800423a25f9cc16cc01d.tar.bz2
* tests/safe.test: Backport performance improvement from
reduced $::auto_path.
Diffstat (limited to 'tests/safe.test')
-rw-r--r--tests/safe.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/safe.test b/tests/safe.test
index 21fad12..a26cb92 100644
--- a/tests/safe.test
+++ b/tests/safe.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: safe.test,v 1.13 2002/05/10 18:47:11 dgp Exp $
+# RCS: @(#) $Id: safe.test,v 1.13.2.1 2005/06/22 16:02:42 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -21,6 +21,9 @@ foreach i [interp slaves] {
interp delete $i
}
+set saveAutoPath $::auto_path
+set ::auto_path [info library]
+
# Force actual loading of the safe package
# because we use un exported (and thus un-autoindexed) APIs
# in this test result arguments:
@@ -519,6 +522,7 @@ test safe-11.8 {testing safe encoding} {
} {1 {wrong # args: should be "encoding convertto ?encoding? data"} {}}
+set ::auto_path $saveAutoPath
# cleanup
::tcltest::cleanupTests
return