drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame^] | 1 | # 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 | |
| 15 | set testdir [file dirname $argv0] |
| 16 | source $testdir/tester.tcl |
| 17 | rename finish_test really_finish_test |
| 18 | proc finish_test {} {} |
| 19 | |
| 20 | set EXCLUDE { |
| 21 | all.test |
| 22 | quick.test |
| 23 | btree2.test |
| 24 | } |
| 25 | |
| 26 | foreach 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 | |
| 32 | really_finish_test |