blob: 904b5ede51660e5e10c792c735e440ea0a30bbd7 [file] [log] [blame]
drhb19a2bc2001-09-16 00:13:26 +00001# 2001 September 15
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11# This file runs all tests.
12#
13# $Id: quick.test,v 1.1 2001/09/16 00:13:28 drh Exp $
14
15set testdir [file dirname $argv0]
16source $testdir/tester.tcl
17rename finish_test really_finish_test
18proc finish_test {} {}
19
20set EXCLUDE {
21 all.test
22 quick.test
23 btree2.test
24}
25
26foreach testfile [lsort -dictionary [glob $testdir/*.test]] {
27 set tail [file tail $testfile]
28 if {[lsearch -exact $EXCLUDE $tail]>=0} continue
29 source $testfile
30}
31
32really_finish_test