diff options
Diffstat (limited to 'test/all.test')
-rw-r--r-- | test/all.test | 35 |
1 files changed, 14 insertions, 21 deletions
diff --git a/test/all.test b/test/all.test index ec85847aa..3de46fba2 100644 --- a/test/all.test +++ b/test/all.test @@ -1,28 +1,16 @@ -# Copyright (c) 1999, 2000 D. Richard Hipp +# 2001 September 15 # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# The author disclaims copyright to this source code. In place of +# a legal notice, here is a blessing: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# -# Author contact information: -# drh@hwaci.com -# http://www.hwaci.com/drh/ +# May you do good and not evil. +# May you find forgiveness for yourself and forgive others. +# May you share freely, never taking more than you give. # #*********************************************************************** # This file runs all tests. # -# $Id: all.test,v 1.9 2001/09/14 16:42:13 drh Exp $ +# $Id: all.test,v 1.10 2001/09/16 00:13:28 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -41,11 +29,16 @@ if {[file exists ./sqlite_test_count]} { # set LeakList {} +set EXCLUDE { + all.test + quick.test + malloc.test +} for {set Counter 0} {$Counter<$COUNT && $nErr==0} {incr Counter} { foreach testfile [lsort -dictionary [glob $testdir/*.test]] { - if {[file tail $testfile]=="all.test"} continue - if {[file tail $testfile]=="malloc.test"} continue + set tail [file tail $testfile] + if {[lsearch -exact $EXCLUDE $tail]>=0} continue source $testfile } if {[info exists Leak]} { |