First public contribution.
2 # Portions Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
4 # May you do good and not evil.
5 # May you find forgiveness for yourself and forgive others.
6 # May you share freely, never taking more than you give.
8 #***********************************************************************
9 # This file runs all tests.
11 # $Id: quick.test,v 1.87 2008/09/09 18:28:07 danielk1977 Exp $
16 set l [lrange $l 1 end]
19 while {[set arg [lshift argv]] != ""} {
22 sqlite3_enable_shared_cache 1
28 set STARTAT "[lshift argv]*"
31 set argv [linsert $argv 0 $arg]
37 set testdir [file dirname $argv0]
38 source $testdir/tester.tcl
39 rename finish_test really_finish_test
40 proc finish_test {} {}
96 if {[sqlite3 -has-codec]} {
102 # Files to include in the test. If this list is empty then everything
103 # that is not in the EXCLUDE list is run.
108 foreach testfile [lsort -dictionary [glob $testdir/*.test]] {
109 # If this is "veryquick.test", do not run any of the malloc or
110 # IO error simulations.
111 if {[info exists ISVERYQUICK] && (
112 [string match *malloc* $testfile] || [string match *ioerr* $testfile]
117 #Symbian OS: tail is overwritten in misc5.test, so use a new var tname for it here.
118 set tname [file tail $testfile]
119 if {[lsearch -exact $EXCLUDE $tname]>=0} continue
120 if {[llength $INCLUDE]>0 && [lsearch -exact $INCLUDE $tname]<0} continue
121 if {[info exists STARTAT] && [string match $STARTAT $tname]} {unset STARTAT}
122 if {[info exists STARTAT]} continue
127 if {$sqlite_open_file_count>0} {
128 puts "$tname did not close all files: $sqlite_open_file_count"
129 # Symbian OS: Set and increase error count with do_fail procedure (definition in Tester.tcl)
131 set sqlite_open_file_count 0
134 foreach var [info vars] {
135 catch { if {[string length [set $var]] > 25000} { unset $var } }
141 #source $testdir/permutations.test
143 source $testdir/misuse.test
145 set sqlite_open_file_count 0