diff options
Diffstat (limited to 'tests/all.tcl')
-rw-r--r-- | tests/all.tcl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/all.tcl b/tests/all.tcl index 8d33488..7f57dc2 100644 --- a/tests/all.tcl +++ b/tests/all.tcl @@ -9,10 +9,12 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. -package require Tcl 8.4 -package require tcltest 2.1 +package require Tcl 8.5 +package require tcltest 2.2 package require Tk ;# This is the Tk test suite; fail early if no Tk! -tcltest::configure -testdir [file join [pwd] [file dirname [info script]]] +tcltest::configure {*}$argv +tcltest::configure -testdir [file normalize [file dirname [info script]]] +tcltest::configure -loadfile \ + [file join [tcltest::testsDirectory] constraints.tcl] tcltest::configure -singleproc 1 -eval tcltest::configure $argv tcltest::runAllTests |