diff options
Diffstat (limited to 'tests/ttk/all.tcl')
-rw-r--r-- | tests/ttk/all.tcl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ttk/all.tcl b/tests/ttk/all.tcl new file mode 100644 index 0000000..75aa035 --- /dev/null +++ b/tests/ttk/all.tcl @@ -0,0 +1,15 @@ +# +# source all tests. +# +package require tcltest 2.1 + +package require Tk 8.5 ;# This is the Tk test suite; fail early if no Tk! + +tcltest::configure -testdir [file join [pwd] [file dirname [info script]]] + +eval tcltest::configure $::argv +tcltest::runAllTests + +if {![catch { package present Tk }]} { + destroy . +} |