diff options
author | jenn <jenn> | 1999-06-26 03:54:09 (GMT) |
---|---|---|
committer | jenn <jenn> | 1999-06-26 03:54:09 (GMT) |
commit | c750824920529a5930ca3a8c4301a9cf9c45d6a4 (patch) | |
tree | 475011f75181f78a0a48f3360124d7e98188018e /tests/all.tcl | |
parent | f95999e4e240586c6002c721425f7b17e84f3637 (diff) | |
download | tcl-c750824920529a5930ca3a8c4301a9cf9c45d6a4.zip tcl-c750824920529a5930ca3a8c4301a9cf9c45d6a4.tar.gz tcl-c750824920529a5930ca3a8c4301a9cf9c45d6a4.tar.bz2 |
Modified the tests to use the package tcltest
Diffstat (limited to 'tests/all.tcl')
-rw-r--r-- | tests/all.tcl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/all.tcl b/tests/all.tcl index d6d898c..7eedd16 100644 --- a/tests/all.tcl +++ b/tests/all.tcl @@ -7,15 +7,17 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: all.tcl,v 1.4 1999/04/21 21:50:30 rjohnson Exp $ +# RCS: @(#) $Id: all.tcl,v 1.5 1999/06/26 03:54:09 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { - source [file join [pwd] [file dirname [info script]] defs.tcl] + package require tcltest + namespace import ::tcltest::* } +info commands set ::tcltest::testSingleFile false puts stdout "Tcl $tcl_patchLevel tests running in interp: [info nameofexecutable]" -puts stdout "Tests running in working dir: $::tcltest::workingDir" +puts stdout "Tests running in working dir: $::tcltest::workingDirectory" if {[llength $::tcltest::skip] > 0} { puts stdout "Skipping tests that match: $::tcltest::skip" } @@ -33,10 +35,10 @@ if {($fileIndex < 1) || ($fIndex > $fileIndex)} { set fileIndex $fIndex } if {$fileIndex > 0} { - set globPattern [file join $::tcltest::testsDir [lindex $argv $fileIndex]] + set globPattern [file join $::tcltest::testsDirectory [lindex $argv $fileIndex]] puts stdout "Sourcing files that match: $globPattern" } else { - set globPattern [file join $::tcltest::testsDir *.test] + set globPattern [file join $::tcltest::testsDirectory *.test] } set fileList [glob -nocomplain $globPattern] if {[llength $fileList] < 1} { |