diff options
author | dgp <dgp@users.sourceforge.net> | 2002-05-10 18:47:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-05-10 18:47:09 (GMT) |
commit | da9484fbf5716a8c56f0aa4517318cbee778e4fb (patch) | |
tree | eabc231534b8a92015e3086cfd9214f9ececc217 /tests/load.test | |
parent | 672777daedebcd7b127dcd8a4950170fb370a2c9 (diff) | |
download | tcl-da9484fbf5716a8c56f0aa4517318cbee778e4fb.zip tcl-da9484fbf5716a8c56f0aa4517318cbee778e4fb.tar.gz tcl-da9484fbf5716a8c56f0aa4517318cbee778e4fb.tar.bz2 |
* Corrected some list-quoting issues and
other matters that cause tests to fail when the patch includes
special characters. Report from Vince Darley. [Bug 554068].
Diffstat (limited to 'tests/load.test')
-rw-r--r-- | tests/load.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/load.test b/tests/load.test index 2a61bfc..fcd6084 100644 --- a/tests/load.test +++ b/tests/load.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: load.test,v 1.8 2002/05/08 05:58:57 dgp Exp $ +# RCS: @(#) $Id: load.test,v 1.9 2002/05/10 18:47:11 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -113,7 +113,7 @@ test load-4.1 {reloading package into same interpreter} [list $dll $loaded] { } {0 {}} test load-4.2 {reloading package into same interpreter} [list $dll $loaded] { list [catch {load [file join $testDir pkga$ext] pkgb} msg] $msg -} "1 {file \"[file join $testDir pkga$ext\"] is already loaded for package \"Pkga\"}" +} [list 1 "file \"[file join $testDir pkga$ext]\" is already loaded for package \"Pkga\""] test load-5.1 {file name not specified and no static package: pick default} \ [list $dll $loaded] { |