summaryrefslogtreecommitdiffstats
path: root/tkimg/tests/all
blob: 00c5220bf15a1fb1da8c0c50d161c59f67e074f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This file contains a top-level script to run all of the Tcl
# tests.  Execute it by invoking "source all" when running tclTest
# in this directory.
#
# SCCS: @(#) all 1.5 96/08/27 08:47:16

foreach i [lsort [glob *.test]] {
    if [string match l.*.test $i] {
	# This is an SCCS lock file;  ignore it.
	continue
    }
    puts stdout $i
    source $i
}