diff options
author | dgp <dgp@users.sourceforge.net> | 2005-06-06 22:46:51 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-06-06 22:46:51 (GMT) |
commit | 36af099870e6c1d9e882ba654ae0b479136917c4 (patch) | |
tree | 4a6e0508f2b4df060f27287968f97352152ecd9f | |
parent | db7a74fbb9341b75d08e2e34917be5d6fb94598c (diff) | |
download | tk-36af099870e6c1d9e882ba654ae0b479136917c4.zip tk-36af099870e6c1d9e882ba654ae0b479136917c4.tar.gz tk-36af099870e6c1d9e882ba654ae0b479136917c4.tar.bz2 |
backport auto_path trimdown to speed up safe.test
-rw-r--r-- | tests/safe.test | 6 |
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 |