1# all.tcl --
2#
3# This file contains a top-level script to run all of the Tk
4# tests.  Execute it by invoking "source all.tcl" when running tktest
5# in this directory.
6#
7# Copyright (c) 1998-1999 by Scriptics Corporation.
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#
12# RCS: @(#) $Id: all.tcl,v 1.7.2.1 2005/02/14 09:24:42 dkf Exp $
13
14package require Tcl 8.4
15package require tcltest 2.1
16package require Tk ;# This is the Tk test suite; fail early if no Tk!
17tcltest::configure -testdir [file join [pwd] [file dirname [info script]]]
18tcltest::configure -singleproc 1
19eval tcltest::configure $argv
20tcltest::runAllTests
21