summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2005-06-06 22:46:51 (GMT)
committerdgp@users.sourceforge.net <dgp>2005-06-06 22:46:51 (GMT)
commit58f55145c3a44db54e2efb7ac4fc445ec81a0005 (patch)
tree4a6e0508f2b4df060f27287968f97352152ecd9f /tests
parenta33ee557a48ec7a771dc081718b94dbbac2b9f07 (diff)
downloadtk-58f55145c3a44db54e2efb7ac4fc445ec81a0005.zip
tk-58f55145c3a44db54e2efb7ac4fc445ec81a0005.tar.gz
tk-58f55145c3a44db54e2efb7ac4fc445ec81a0005.tar.bz2
backport auto_path trimdown to speed up safe.test
Diffstat (limited to 'tests')
-rw-r--r--tests/safe.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/safe.test b/tests/safe.test
index 45976c3..aa9e100 100644
--- a/tests/safe.test
+++ b/tests/safe.test
@@ -6,7 +6,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: safe.test,v 1.10.2.1 2004/10/26 23:23:13 dgp Exp $
+# RCS: @(#) $Id: safe.test,v 1.10.2.2 2005/06/06 22:46:51 dgp Exp $
package require tcltest 2.1
namespace import -force tcltest::configure
@@ -45,6 +45,9 @@ if {"$tcl_platform(platform)" == "macintosh"} {
set hidden_cmds {bell cd clipboard encoding exec exit fconfigure file glob grab load menu open pwd selection send socket source toplevel wm}
}
+set saveAutoPath $::auto_path
+set ::auto_path [list [info library] $::tk_library]
+
test safe-1.1 {Safe Tk loading into an interpreter} {
catch {safe::interpDelete a}
safe::loadTk [safe::interpCreate a]
@@ -214,6 +217,7 @@ test safe-7.1 {canvas printing} {
} 0
# cleanup
+set ::auto_path $saveAutoPath
unset hidden_cmds
::tcltest::cleanupTests
return