diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-07 08:03:11 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-07 08:03:11 (GMT) |
commit | 307233f5f049dea251e0d858e301565c0ed88117 (patch) | |
tree | dab6cc90697541cd9172baa487925dcaf63bfa25 /tests/load.test | |
parent | a7d5e487cdc90cf70ddff97143b7357800b9388d (diff) | |
download | tcl-307233f5f049dea251e0d858e301565c0ed88117.zip tcl-307233f5f049dea251e0d858e301565c0ed88117.tar.gz tcl-307233f5f049dea251e0d858e301565c0ed88117.tar.bz2 |
Fix tests with known dependencies on hash iteration order.
Diffstat (limited to 'tests/load.test')
-rw-r--r-- | tests/load.test | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/load.test b/tests/load.test index dd3d011..8ecdaf5 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.19 2007/12/13 15:26:06 dgp Exp $ +# RCS: @(#) $Id: load.test,v 1.20 2010/02/07 08:03:11 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -43,7 +43,7 @@ testConstraint teststaticpkg [llength [info commands teststaticpkg]] testConstraint testsimplefilesystem \ [llength [info commands testsimplefilesystem]] - + test load-1.1 {basic errors} {} { list [catch {load} msg] $msg } "1 {wrong \# args: should be \"load fileName ?packageName? ?interp?\"}" @@ -66,7 +66,7 @@ test load-1.6 {basic errors} {} { test load-2.1 {basic loading, with guess for package name} \ [list $dll $loaded] { load [file join $testDir pkga$ext] - list [pkga_eq abc def] [info commands pkga_*] + list [pkga_eq abc def] [lsort [info commands pkga_*]] } {0 {pkga_eq pkga_quote}} interp create -safe child test load-2.2 {loading into a safe interpreter, with package name conversion} \ @@ -206,8 +206,12 @@ test load-10.1 {load from vfs} \ -body {list [catch {load simplefs:/pkgd$ext pkgd} msg] $msg} \ -result {0 {}} \ -cleanup {testsimplefilesystem 0; cd $dir; unset dir} - + # cleanup unset ext ::tcltest::cleanupTests return + +# Local Variables: +# mode: tcl +# End: |