1# all.tcl --
2#
3# This file contains a top-level script to run all of the ttk
4# tests.  Execute it by invoking "source all.tcl" when running tktest
5# in this directory.
6#
7# Copyright (c) 2007 by the Tk developers.
8#
9# See the file "license.terms" for information on usage and redistribution
10# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11
12package require Tcl 8.5
13package require tcltest 2.2
14package require Tk ;# This is the Tk test suite; fail early if no Tk!
15tcltest::configure {*}$argv
16tcltest::configure -testdir [file normalize [file dirname [info script]]]
17tcltest::configure -loadfile \
18    [file join [file dirname [tcltest::testsDirectory]] constraints.tcl]
19tcltest::configure -singleproc 1
20tcltest::runAllTests
21
22