diff options
Diffstat (limited to 'tests/pkgMkIndex.test')
-rw-r--r-- | tests/pkgMkIndex.test | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/tests/pkgMkIndex.test b/tests/pkgMkIndex.test index 52eb048..7fbb909 100644 --- a/tests/pkgMkIndex.test +++ b/tests/pkgMkIndex.test @@ -8,13 +8,16 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: pkgMkIndex.test,v 1.11 1999/07/01 17:36:19 jenn Exp $ +# RCS: @(#) $Id: pkgMkIndex.test,v 1.12 1999/10/19 18:08:44 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest namespace import ::tcltest::* } +set origDir [pwd] +cd $::tcltest::testsDirectory + set fullPkgPath [file join $::tcltest::testsDirectory pkg] # Add the pkg1 directory to auto_path, so that its packages can be found. @@ -158,6 +161,8 @@ proc pkgtest::createIndex { args } { set dirPath [lindex $parsed 1] set patternList [lindex $parsed 2] + file mkdir $dirPath + if {[catch { file delete [file join $dirPath pkgIndex.tcl] eval pkg_mkIndex $options $dirPath $patternList @@ -243,7 +248,7 @@ proc pkgtest::runIndex { args } { set result [list 0 [makePkgList [parseIndex $idxFile]]] } err]} { set result [list 1 $err] - } + } file delete $idxFile } else { set result $rv @@ -342,16 +347,7 @@ test pkgMkIndex-11.1 {conflicting namespace imports} { # cleanup namespace delete pkgtest +cd $origDir ::tcltest::cleanupTests return - - - - - - - - - - |