diff options
author | dgp <dgp@noemail.net> | 2003-04-01 21:06:11 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2003-04-01 21:06:11 (GMT) |
commit | 1c09b5ca177f08e50fe6ff7da22f6b944be9f66b (patch) | |
tree | b4c1ef216ce065ee1d996973ed53d862904215cc /tests/main.test | |
parent | bae07036d64890a1c3528a9e0abc0f11890a0767 (diff) | |
download | tk-1c09b5ca177f08e50fe6ff7da22f6b944be9f66b.zip tk-1c09b5ca177f08e50fe6ff7da22f6b944be9f66b.tar.gz tk-1c09b5ca177f08e50fe6ff7da22f6b944be9f66b.tar.bz2 |
* tests/all.tcl: Made better use of a common
* tests/constraints.tcl: -loadfile to hold definitions
* tests/*.test: common to all test files.
FossilOrigin-Name: 01af81ecf20f3111d08ac51117da1c5ca09c567d
Diffstat (limited to 'tests/main.test')
-rw-r--r-- | tests/main.test | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/tests/main.test b/tests/main.test index 0f25637..17fbaf9 100644 --- a/tests/main.test +++ b/tests/main.test @@ -8,19 +8,12 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: main.test,v 1.6 2002/07/13 20:28:35 dgp Exp $ +# RCS: @(#) $Id: main.test,v 1.7 2003/04/01 21:06:41 dgp Exp $ package require tcltest 2.1 -namespace import -force tcltest::configure -namespace import -force tcltest::testsDirectory -configure -testdir [file join [pwd] [file dirname [info script]]] -configure -loadfile [file join [testsDirectory] constraints.tcl] +eval tcltest::configure $argv tcltest::loadTestedCommands -namespace import -force tcltest::interpreter -namespace import -force tcltest::makeFile -namespace import -force tcltest::removeFile - test main-1.1 {StdinProc} {unix} { set script [makeFile { close stdin; exit @@ -35,7 +28,7 @@ test main-1.1 {StdinProc} {unix} { } {0 {}} # cleanup -::tcltest::cleanupTests +cleanupTests return |