1# all.tcl --
2#
3# This file contains a top-level script to run all of the Tcl
4# tests.  Execute it by invoking "source all.test" when running tcltest
5# in this directory.
6#
7# Copyright (c) 1998-2000 by Ajuba Solutions
8# All rights reserved.
9#
10# RCS: @(#) $Id: all.tcl,v 1.4 2004/09/22 09:37:08 davygrvy Exp $
11
12package require tcltest 2.1
13
14tcltest::testsDirectory [file dir [info script]]
15tcltest::runAllTests
16
17return
18