sl@0
|
1 |
# 2008 June 21
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# $Id: permutations.test,v 1.32 2008/09/29 14:27:41 danielk1977 Exp $
|
sl@0
|
13 |
|
sl@0
|
14 |
set testdir [file dirname $argv0]
|
sl@0
|
15 |
source $testdir/tester.tcl
|
sl@0
|
16 |
|
sl@0
|
17 |
# Argument processing.
|
sl@0
|
18 |
#
|
sl@0
|
19 |
#puts "PERM-DEBUG: argv=$argv"
|
sl@0
|
20 |
namespace eval ::perm {
|
sl@0
|
21 |
variable testmode [lindex $::argv 0]
|
sl@0
|
22 |
variable testfile [lindex $::argv 1]
|
sl@0
|
23 |
}
|
sl@0
|
24 |
set argv [lrange $argv 2 end]
|
sl@0
|
25 |
#puts "PERM-DEBUG: testmode=$::perm::testmode tstfile=$::perm::testfile"
|
sl@0
|
26 |
|
sl@0
|
27 |
set ::permutations_presql ""
|
sl@0
|
28 |
set ::permutations_test_prefix ""
|
sl@0
|
29 |
|
sl@0
|
30 |
if {$::perm::testmode eq "veryquick"} {
|
sl@0
|
31 |
set ::perm::testmode [list persistent_journal no_journal]
|
sl@0
|
32 |
set ISQUICK 1
|
sl@0
|
33 |
}
|
sl@0
|
34 |
if {$::perm::testmode eq "quick"} {
|
sl@0
|
35 |
set ::perm::testmode [list persistent_journal no_journal autovacuum_ioerr]
|
sl@0
|
36 |
set ISQUICK 1
|
sl@0
|
37 |
}
|
sl@0
|
38 |
if {$::perm::testmode eq "all" || $::perm::testmode eq ""} {
|
sl@0
|
39 |
set ::perm::testmode {
|
sl@0
|
40 |
memsubsys1 memsubsys2 singlethread multithread onefile utf16 exclusive
|
sl@0
|
41 |
persistent_journal persistent_journal_error no_journal no_journal_error
|
sl@0
|
42 |
autovacuum_ioerr no_mutex_try
|
sl@0
|
43 |
}
|
sl@0
|
44 |
}
|
sl@0
|
45 |
if {$::perm::testmode eq "targets"} {
|
sl@0
|
46 |
puts ""
|
sl@0
|
47 |
puts -nonewline "veryquick "
|
sl@0
|
48 |
puts "Same as persistent_journal and no_journal"
|
sl@0
|
49 |
puts -nonewline "quick "
|
sl@0
|
50 |
puts "Same as persistent_journal, no_journal and autovacuum_ioerr"
|
sl@0
|
51 |
puts -nonewline "all "
|
sl@0
|
52 |
puts "Everything except autovacuum_crash"
|
sl@0
|
53 |
}
|
sl@0
|
54 |
#puts "PERM-DEBUG: testmode=$::perm::testmode"
|
sl@0
|
55 |
|
sl@0
|
56 |
set EXCLUDE {
|
sl@0
|
57 |
all.test in2.test onefile.test
|
sl@0
|
58 |
async2.test incrvacuum_ioerr.test permutations.test
|
sl@0
|
59 |
async.test jrnlmode2.test quick.test
|
sl@0
|
60 |
autovacuum_crash.test jrnlmode3.test shared_err.test
|
sl@0
|
61 |
autovacuum_ioerr.test jrnlmode4.test soak.test
|
sl@0
|
62 |
btree8.test loadext.test speed1p.test
|
sl@0
|
63 |
corrupt.test malloc2.test speed1.test
|
sl@0
|
64 |
crash2.test malloc3.test speed2.test
|
sl@0
|
65 |
crash3.test malloc4.test speed3.test
|
sl@0
|
66 |
crash4.test mallocAll.test speed4p.test
|
sl@0
|
67 |
crash6.test malloc.test speed4.test
|
sl@0
|
68 |
crash7.test memleak.test sqllimits1.test
|
sl@0
|
69 |
crash.test memsubsys1.test thread001.test
|
sl@0
|
70 |
exclusive3.test memsubsys2.test thread002.test
|
sl@0
|
71 |
fts3.test misc7.test utf16.test
|
sl@0
|
72 |
fuzz_malloc.test misuse.test veryquick.test
|
sl@0
|
73 |
fuzz.test mutex2.test vtab_err.test
|
sl@0
|
74 |
lookaside.test fuzz3.test
|
sl@0
|
75 |
}
|
sl@0
|
76 |
set ALLTESTS [list]
|
sl@0
|
77 |
foreach filename [glob $testdir/*.test] {
|
sl@0
|
78 |
set filename [file tail $filename]
|
sl@0
|
79 |
if {[lsearch $EXCLUDE $filename] < 0} { lappend ALLTESTS $filename }
|
sl@0
|
80 |
}
|
sl@0
|
81 |
set ALLTESTS [lsort $ALLTESTS]
|
sl@0
|
82 |
|
sl@0
|
83 |
rename finish_test really_finish_test2
|
sl@0
|
84 |
proc finish_test {} {}
|
sl@0
|
85 |
|
sl@0
|
86 |
rename do_test really_do_test
|
sl@0
|
87 |
|
sl@0
|
88 |
proc do_test {name args} {
|
sl@0
|
89 |
eval really_do_test [list "perm-$::permutations_test_prefix.$name"] $args
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
# Overload the [sqlite3] command
|
sl@0
|
93 |
rename sqlite3 really_sqlite3
|
sl@0
|
94 |
proc sqlite3 {args} {
|
sl@0
|
95 |
set r [eval really_sqlite3 $args]
|
sl@0
|
96 |
if { [llength $args] == 2 && $::permutations_presql ne "" } {
|
sl@0
|
97 |
[lindex $args 0] eval $::permutations_presql
|
sl@0
|
98 |
}
|
sl@0
|
99 |
set r
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
# run_tests OPTIONS
|
sl@0
|
103 |
#
|
sl@0
|
104 |
# where available options are:
|
sl@0
|
105 |
#
|
sl@0
|
106 |
# -initialize SCRIPT (default "")
|
sl@0
|
107 |
# -shutdown SCRIPT (default "")
|
sl@0
|
108 |
# -include LIST-OF-FILES (default $::ALLTESTS)
|
sl@0
|
109 |
# -exclude LIST-OF-FILES (default "")
|
sl@0
|
110 |
# -presql SQL (default "")
|
sl@0
|
111 |
# -description TITLE (default "")
|
sl@0
|
112 |
#
|
sl@0
|
113 |
proc run_tests {name args} {
|
sl@0
|
114 |
set ::permutations_test_prefix $name
|
sl@0
|
115 |
set options(-shutdown) ""
|
sl@0
|
116 |
set options(-initialize) ""
|
sl@0
|
117 |
set options(-exclude) ""
|
sl@0
|
118 |
set options(-include) $::ALLTESTS
|
sl@0
|
119 |
set options(-presql) ""
|
sl@0
|
120 |
set options(-description) "no description supplied (fixme)"
|
sl@0
|
121 |
array set options $args
|
sl@0
|
122 |
#puts "PERM-DEBUG: name=$name testfile=$::perm::testfile"
|
sl@0
|
123 |
#puts "PERM-DEBUG: [array get options]"
|
sl@0
|
124 |
|
sl@0
|
125 |
if {$::perm::testmode eq "targets"} {
|
sl@0
|
126 |
puts [format "% -20s %s" $name [string trim $options(-description)]]
|
sl@0
|
127 |
return
|
sl@0
|
128 |
}
|
sl@0
|
129 |
if {$::perm::testmode ne "" && [lsearch $::perm::testmode $name]<0} {
|
sl@0
|
130 |
puts "skipping permutation test $name..."
|
sl@0
|
131 |
return
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
uplevel $options(-initialize)
|
sl@0
|
135 |
set ::permutations_presql $options(-presql)
|
sl@0
|
136 |
|
sl@0
|
137 |
foreach file [lsort $options(-include)] {
|
sl@0
|
138 |
if {[lsearch $options(-exclude) $file] < 0 &&
|
sl@0
|
139 |
( $::perm::testfile eq "" ||
|
sl@0
|
140 |
$::perm::testfile eq $file ||
|
sl@0
|
141 |
"$::perm::testfile.test" eq $file )
|
sl@0
|
142 |
} {
|
sl@0
|
143 |
set ::perm::shared_cache_setting [shared_cache_setting]
|
sl@0
|
144 |
uplevel source $::testdir/$file
|
sl@0
|
145 |
if {$::perm::shared_cache_setting ne [shared_cache_setting]} {
|
sl@0
|
146 |
error "File $::testdir/$file changed the shared cache setting from $::perm::shared_cache_setting to [shared_cache_setting]"
|
sl@0
|
147 |
}
|
sl@0
|
148 |
} else {
|
sl@0
|
149 |
# puts "skipping file $file"
|
sl@0
|
150 |
}
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
uplevel $options(-shutdown)
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
proc shared_cache_setting {} {
|
sl@0
|
157 |
set ret 0
|
sl@0
|
158 |
catch {
|
sl@0
|
159 |
set ret [sqlite3_enable_shared_cache]
|
sl@0
|
160 |
}
|
sl@0
|
161 |
return $ret
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
#############################################################################
|
sl@0
|
165 |
# Start of tests
|
sl@0
|
166 |
|
sl@0
|
167 |
# Run some tests using pre-allocated page and scratch blocks.
|
sl@0
|
168 |
#
|
sl@0
|
169 |
run_tests "memsubsys1" -description {
|
sl@0
|
170 |
Tests using pre-allocated page and scratch blocks
|
sl@0
|
171 |
} -exclude {
|
sl@0
|
172 |
ioerr5.test
|
sl@0
|
173 |
malloc5.test
|
sl@0
|
174 |
} -initialize {
|
sl@0
|
175 |
catch {db close}
|
sl@0
|
176 |
sqlite3_shutdown
|
sl@0
|
177 |
sqlite3_config_pagecache 4096 24
|
sl@0
|
178 |
sqlite3_config_scratch 25000 1
|
sl@0
|
179 |
sqlite3_initialize
|
sl@0
|
180 |
} -shutdown {
|
sl@0
|
181 |
catch {db close}
|
sl@0
|
182 |
sqlite3_shutdown
|
sl@0
|
183 |
sqlite3_config_pagecache 0 0
|
sl@0
|
184 |
sqlite3_config_scratch 0 0
|
sl@0
|
185 |
sqlite3_initialize
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
# Run some tests using pre-allocated page and scratch blocks. This time
|
sl@0
|
189 |
# the allocations are too small to use in most cases.
|
sl@0
|
190 |
#
|
sl@0
|
191 |
# Both ioerr5.test and malloc5.test are excluded because they test the
|
sl@0
|
192 |
# sqlite3_soft_heap_limit() and sqlite3_release_memory() functionality.
|
sl@0
|
193 |
# This functionality is disabled if a pre-allocated page block is provided.
|
sl@0
|
194 |
#
|
sl@0
|
195 |
run_tests "memsubsys2" -description {
|
sl@0
|
196 |
Tests using small pre-allocated page and scratch blocks
|
sl@0
|
197 |
} -exclude {
|
sl@0
|
198 |
ioerr5.test
|
sl@0
|
199 |
malloc5.test
|
sl@0
|
200 |
} -initialize {
|
sl@0
|
201 |
catch {db close}
|
sl@0
|
202 |
sqlite3_shutdown
|
sl@0
|
203 |
sqlite3_config_pagecache 512 5
|
sl@0
|
204 |
sqlite3_config_scratch 1000 1
|
sl@0
|
205 |
sqlite3_initialize
|
sl@0
|
206 |
} -shutdown {
|
sl@0
|
207 |
catch {db close}
|
sl@0
|
208 |
sqlite3_shutdown
|
sl@0
|
209 |
sqlite3_config_pagecache 0 0
|
sl@0
|
210 |
sqlite3_config_scratch 0 0
|
sl@0
|
211 |
sqlite3_initialize
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
# Run all tests with the lookaside allocator disabled.
|
sl@0
|
215 |
#
|
sl@0
|
216 |
run_tests "memsubsys3" -description {
|
sl@0
|
217 |
OOM tests with lookaside disabled
|
sl@0
|
218 |
} -include {
|
sl@0
|
219 |
malloc.test
|
sl@0
|
220 |
malloc3.test
|
sl@0
|
221 |
malloc4.test
|
sl@0
|
222 |
malloc5.test
|
sl@0
|
223 |
malloc6.test
|
sl@0
|
224 |
malloc7.test
|
sl@0
|
225 |
malloc8.test
|
sl@0
|
226 |
malloc9.test
|
sl@0
|
227 |
mallocA.test
|
sl@0
|
228 |
mallocB.test
|
sl@0
|
229 |
mallocC.test
|
sl@0
|
230 |
mallocD.test
|
sl@0
|
231 |
mallocE.test
|
sl@0
|
232 |
mallocF.test
|
sl@0
|
233 |
mallocG.test
|
sl@0
|
234 |
} -initialize {
|
sl@0
|
235 |
catch {db close}
|
sl@0
|
236 |
sqlite3_shutdown
|
sl@0
|
237 |
sqlite3_config_lookaside 0 0
|
sl@0
|
238 |
sqlite3_initialize
|
sl@0
|
239 |
} -shutdown {
|
sl@0
|
240 |
catch {db close}
|
sl@0
|
241 |
sqlite3_shutdown
|
sl@0
|
242 |
sqlite3_config_lookaside 100 500
|
sl@0
|
243 |
sqlite3_initialize
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
# Run some tests in SQLITE_CONFIG_SINGLETHREAD mode.
|
sl@0
|
247 |
#
|
sl@0
|
248 |
run_tests "singlethread" -description {
|
sl@0
|
249 |
Tests run in SQLITE_CONFIG_SINGLETHREAD mode
|
sl@0
|
250 |
} -initialize {
|
sl@0
|
251 |
do_test mutex2-singlethread.0 {
|
sl@0
|
252 |
catch {db close}
|
sl@0
|
253 |
sqlite3_shutdown
|
sl@0
|
254 |
sqlite3_config singlethread
|
sl@0
|
255 |
} SQLITE_OK
|
sl@0
|
256 |
} -include {
|
sl@0
|
257 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
258 |
select2.test trans.test update.test vacuum.test types.test
|
sl@0
|
259 |
types2.test types3.test
|
sl@0
|
260 |
} -shutdown {
|
sl@0
|
261 |
do_test mutex2-X {
|
sl@0
|
262 |
catch {db close}
|
sl@0
|
263 |
sqlite3_shutdown
|
sl@0
|
264 |
sqlite3_config serialized
|
sl@0
|
265 |
} SQLITE_OK
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
run_tests "nomutex" -description {
|
sl@0
|
269 |
Tests run with the SQLITE_OPEN_MULTITHREADED flag passed to sqlite3_open().
|
sl@0
|
270 |
} -initialize {
|
sl@0
|
271 |
rename sqlite3 sqlite3_nomutex
|
sl@0
|
272 |
proc sqlite3 {args} {
|
sl@0
|
273 |
if {[string range [lindex $args 0] 0 0] ne "-"} {
|
sl@0
|
274 |
lappend args -fullmutex 0 -nomutex 1
|
sl@0
|
275 |
}
|
sl@0
|
276 |
uplevel [concat sqlite3_nomutex $args]
|
sl@0
|
277 |
}
|
sl@0
|
278 |
} -include {
|
sl@0
|
279 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
280 |
select2.test trans.test update.test vacuum.test types.test
|
sl@0
|
281 |
types2.test types3.test
|
sl@0
|
282 |
} -shutdown {
|
sl@0
|
283 |
rename sqlite3 {}
|
sl@0
|
284 |
rename sqlite3_nomutex sqlite3
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
# Run some tests in SQLITE_CONFIG_MULTITHREAD mode.
|
sl@0
|
288 |
#
|
sl@0
|
289 |
run_tests "multithread" -description {
|
sl@0
|
290 |
Tests run in SQLITE_CONFIG_MULTITHREAD mode
|
sl@0
|
291 |
} -initialize {
|
sl@0
|
292 |
do_test mutex2-multithread.0 {
|
sl@0
|
293 |
catch {db close}
|
sl@0
|
294 |
sqlite3_shutdown
|
sl@0
|
295 |
sqlite3_config multithread
|
sl@0
|
296 |
} SQLITE_OK
|
sl@0
|
297 |
} -include {
|
sl@0
|
298 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
299 |
select2.test trans.test update.test vacuum.test types.test
|
sl@0
|
300 |
types2.test types3.test
|
sl@0
|
301 |
} -shutdown {
|
sl@0
|
302 |
do_test mutex2-X {
|
sl@0
|
303 |
catch {db close}
|
sl@0
|
304 |
sqlite3_shutdown
|
sl@0
|
305 |
sqlite3_config serialized
|
sl@0
|
306 |
} SQLITE_OK
|
sl@0
|
307 |
}
|
sl@0
|
308 |
|
sl@0
|
309 |
# Run some tests in SQLITE_OPEN_FULLMUTEX mode.
|
sl@0
|
310 |
#
|
sl@0
|
311 |
run_tests "fullmutex" -description {
|
sl@0
|
312 |
Tests run in SQLITE_OPEN_FULLMUTEX mode
|
sl@0
|
313 |
} -initialize {
|
sl@0
|
314 |
rename sqlite3 sqlite3_fullmutex
|
sl@0
|
315 |
proc sqlite3 {args} {
|
sl@0
|
316 |
if {[string range [lindex $args 0] 0 0] ne "-"} {
|
sl@0
|
317 |
lappend args -nomutex 0 -fullmutex 1
|
sl@0
|
318 |
}
|
sl@0
|
319 |
uplevel [concat sqlite3_fullmutex $args]
|
sl@0
|
320 |
}
|
sl@0
|
321 |
} -include {
|
sl@0
|
322 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
323 |
select2.test trans.test update.test vacuum.test types.test
|
sl@0
|
324 |
types2.test types3.test
|
sl@0
|
325 |
} -shutdown {
|
sl@0
|
326 |
rename sqlite3 {}
|
sl@0
|
327 |
rename sqlite3_fullmutex sqlite3
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
# Run some tests using the "onefile" demo.
|
sl@0
|
331 |
#
|
sl@0
|
332 |
run_tests "onefile" -description {
|
sl@0
|
333 |
Run some tests using the "test_onefile.c" demo
|
sl@0
|
334 |
} -initialize {
|
sl@0
|
335 |
rename sqlite3 sqlite3_onefile
|
sl@0
|
336 |
proc sqlite3 {args} {
|
sl@0
|
337 |
if {[string range [lindex $args 0] 0 0] ne "-"} {
|
sl@0
|
338 |
lappend args -vfs fs
|
sl@0
|
339 |
}
|
sl@0
|
340 |
uplevel [concat sqlite3_onefile $args]
|
sl@0
|
341 |
}
|
sl@0
|
342 |
} -include {
|
sl@0
|
343 |
conflict.test insert.test insert2.test insert3.test
|
sl@0
|
344 |
rollback.test select1.test select2.test select3.test
|
sl@0
|
345 |
} -shutdown {
|
sl@0
|
346 |
rename sqlite3 {}
|
sl@0
|
347 |
rename sqlite3_onefile sqlite3
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|
sl@0
|
350 |
# Run some tests using UTF-16 databases.
|
sl@0
|
351 |
#
|
sl@0
|
352 |
run_tests "utf16" -description {
|
sl@0
|
353 |
Run tests using UTF-16 databases
|
sl@0
|
354 |
} -presql {
|
sl@0
|
355 |
pragma encoding = 'UTF-16'
|
sl@0
|
356 |
} -include {
|
sl@0
|
357 |
alter.test alter3.test
|
sl@0
|
358 |
auth.test bind.test blob.test capi2.test capi3.test collate1.test
|
sl@0
|
359 |
collate2.test collate3.test collate4.test collate5.test collate6.test
|
sl@0
|
360 |
conflict.test date.test delete.test expr.test fkey1.test func.test
|
sl@0
|
361 |
hook.test index.test insert2.test insert.test interrupt.test in.test
|
sl@0
|
362 |
intpkey.test ioerr.test join2.test join.test lastinsert.test
|
sl@0
|
363 |
laststmtchanges.test limit.test lock2.test lock.test main.test
|
sl@0
|
364 |
memdb.test minmax.test misc1.test misc2.test misc3.test notnull.test
|
sl@0
|
365 |
null.test progress.test quote.test rowid.test select1.test select2.test
|
sl@0
|
366 |
select3.test select4.test select5.test select6.test sort.test
|
sl@0
|
367 |
subselect.test tableapi.test table.test temptable.test
|
sl@0
|
368 |
trace.test trigger1.test trigger2.test trigger3.test
|
sl@0
|
369 |
trigger4.test types2.test types.test unique.test update.test
|
sl@0
|
370 |
vacuum.test view.test where.test
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
# Run some tests in exclusive locking mode.
|
sl@0
|
374 |
#
|
sl@0
|
375 |
run_tests "exclusive" -description {
|
sl@0
|
376 |
Run tests in exclusive locking mode.
|
sl@0
|
377 |
} -presql {
|
sl@0
|
378 |
pragma locking_mode = 'exclusive'
|
sl@0
|
379 |
} -include {
|
sl@0
|
380 |
rollback.test select1.test select2.test
|
sl@0
|
381 |
malloc.test ioerr.test
|
sl@0
|
382 |
}
|
sl@0
|
383 |
|
sl@0
|
384 |
# Run some tests in exclusive locking mode with truncated journals.
|
sl@0
|
385 |
#
|
sl@0
|
386 |
run_tests "exclusive-truncate" -description {
|
sl@0
|
387 |
Run tests in exclusive locking mode and truncate journal mode.
|
sl@0
|
388 |
} -presql {
|
sl@0
|
389 |
pragma locking_mode = 'exclusive';
|
sl@0
|
390 |
pragma journal_mode = TRUNCATE;
|
sl@0
|
391 |
} -include {
|
sl@0
|
392 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
393 |
select2.test update.test malloc.test ioerr.test
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
# Run some tests in persistent journal mode.
|
sl@0
|
397 |
#
|
sl@0
|
398 |
run_tests "persistent_journal" -description {
|
sl@0
|
399 |
Run tests in persistent-journal mode.
|
sl@0
|
400 |
} -presql {
|
sl@0
|
401 |
pragma journal_mode = persist
|
sl@0
|
402 |
} -include {
|
sl@0
|
403 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
404 |
select2.test trans.test update.test vacuum.test
|
sl@0
|
405 |
}
|
sl@0
|
406 |
|
sl@0
|
407 |
# Run some tests in truncating journal mode.
|
sl@0
|
408 |
#
|
sl@0
|
409 |
run_tests "truncate_journal" -description {
|
sl@0
|
410 |
Run tests in persistent-journal mode.
|
sl@0
|
411 |
} -presql {
|
sl@0
|
412 |
pragma journal_mode = truncate
|
sl@0
|
413 |
} -include {
|
sl@0
|
414 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
415 |
select2.test trans.test update.test vacuum.test
|
sl@0
|
416 |
malloc.test ioerr.test
|
sl@0
|
417 |
}
|
sl@0
|
418 |
|
sl@0
|
419 |
# Run some error tests in persistent journal mode.
|
sl@0
|
420 |
#
|
sl@0
|
421 |
run_tests "persistent_journal_error" -description {
|
sl@0
|
422 |
Run malloc.test and ioerr.test in persistent-journal mode.
|
sl@0
|
423 |
} -presql {
|
sl@0
|
424 |
pragma journal_mode = persist
|
sl@0
|
425 |
} -include {
|
sl@0
|
426 |
malloc.test ioerr.test
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
# Run some tests in no journal mode.
|
sl@0
|
430 |
#
|
sl@0
|
431 |
run_tests "no_journal" -description {
|
sl@0
|
432 |
Run tests in no-journal mode.
|
sl@0
|
433 |
} -presql {
|
sl@0
|
434 |
pragma journal_mode = persist
|
sl@0
|
435 |
} -include {
|
sl@0
|
436 |
delete.test delete2.test insert.test rollback.test select1.test
|
sl@0
|
437 |
select2.test trans.test update.test vacuum.test
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
# Run some error tests in no journal mode.
|
sl@0
|
441 |
#
|
sl@0
|
442 |
run_tests "no_journal_error" -description {
|
sl@0
|
443 |
Run malloc.test and ioerr.test in no-journal mode.
|
sl@0
|
444 |
} -presql {
|
sl@0
|
445 |
pragma journal_mode = persist
|
sl@0
|
446 |
} -include {
|
sl@0
|
447 |
malloc.test ioerr.test
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
# Run some crash-tests in autovacuum mode.
|
sl@0
|
451 |
#
|
sl@0
|
452 |
run_tests "autovacuum_crash" -description {
|
sl@0
|
453 |
Run crash.test in autovacuum mode.
|
sl@0
|
454 |
} -presql {
|
sl@0
|
455 |
pragma auto_vacuum = 1
|
sl@0
|
456 |
} -include crash.test
|
sl@0
|
457 |
|
sl@0
|
458 |
# Run some ioerr-tests in autovacuum mode.
|
sl@0
|
459 |
#
|
sl@0
|
460 |
run_tests "autovacuum_ioerr" -description {
|
sl@0
|
461 |
Run ioerr.test in autovacuum mode.
|
sl@0
|
462 |
} -presql {
|
sl@0
|
463 |
pragma auto_vacuum = 1
|
sl@0
|
464 |
} -include ioerr.test
|
sl@0
|
465 |
|
sl@0
|
466 |
ifcapable mem3 {
|
sl@0
|
467 |
run_tests "memsys3" -description {
|
sl@0
|
468 |
Run tests using the allocator in mem3.c.
|
sl@0
|
469 |
} -exclude {
|
sl@0
|
470 |
autovacuum.test delete3.test manydb.test
|
sl@0
|
471 |
bigrow.test incrblob2.test memdb.test
|
sl@0
|
472 |
bitvec.test index2.test memsubsys1.test
|
sl@0
|
473 |
capi3c.test ioerr.test memsubsys2.test
|
sl@0
|
474 |
capi3.test join3.test pagesize.test
|
sl@0
|
475 |
collate5.test limit.test
|
sl@0
|
476 |
} -initialize {
|
sl@0
|
477 |
catch {db close}
|
sl@0
|
478 |
sqlite3_reset_auto_extension
|
sl@0
|
479 |
sqlite3_shutdown
|
sl@0
|
480 |
sqlite3_config_heap 25000000 0
|
sl@0
|
481 |
sqlite3_config_lookaside 0 0
|
sl@0
|
482 |
install_malloc_faultsim 1
|
sl@0
|
483 |
sqlite3_initialize
|
sl@0
|
484 |
autoinstall_test_functions
|
sl@0
|
485 |
} -shutdown {
|
sl@0
|
486 |
catch {db close}
|
sl@0
|
487 |
sqlite3_reset_auto_extension
|
sl@0
|
488 |
sqlite3_shutdown
|
sl@0
|
489 |
sqlite3_config_heap 0 0
|
sl@0
|
490 |
sqlite3_config_lookaside 100 500
|
sl@0
|
491 |
install_malloc_faultsim 1
|
sl@0
|
492 |
sqlite3_initialize
|
sl@0
|
493 |
}
|
sl@0
|
494 |
}
|
sl@0
|
495 |
|
sl@0
|
496 |
ifcapable mem5 {
|
sl@0
|
497 |
run_tests "memsys5" -description {
|
sl@0
|
498 |
Run tests using the allocator in mem5.c.
|
sl@0
|
499 |
} -exclude {
|
sl@0
|
500 |
autovacuum.test delete3.test manydb.test
|
sl@0
|
501 |
bigrow.test incrblob2.test memdb.test
|
sl@0
|
502 |
bitvec.test index2.test memsubsys1.test
|
sl@0
|
503 |
capi3c.test ioerr.test memsubsys2.test
|
sl@0
|
504 |
capi3.test join3.test pagesize.test
|
sl@0
|
505 |
collate5.test limit.test
|
sl@0
|
506 |
} -initialize {
|
sl@0
|
507 |
catch {db close}
|
sl@0
|
508 |
sqlite3_reset_auto_extension
|
sl@0
|
509 |
sqlite3_shutdown
|
sl@0
|
510 |
sqlite3_config_heap 25000000 64
|
sl@0
|
511 |
sqlite3_config_lookaside 0 0
|
sl@0
|
512 |
install_malloc_faultsim 1
|
sl@0
|
513 |
sqlite3_initialize
|
sl@0
|
514 |
autoinstall_test_functions
|
sl@0
|
515 |
} -shutdown {
|
sl@0
|
516 |
catch {db close}
|
sl@0
|
517 |
sqlite3_reset_auto_extension
|
sl@0
|
518 |
sqlite3_shutdown
|
sl@0
|
519 |
sqlite3_config_heap 0 0
|
sl@0
|
520 |
sqlite3_config_lookaside 100 500
|
sl@0
|
521 |
install_malloc_faultsim 1
|
sl@0
|
522 |
sqlite3_initialize
|
sl@0
|
523 |
}
|
sl@0
|
524 |
|
sl@0
|
525 |
run_tests "memsys5-2" -description {
|
sl@0
|
526 |
Run tests using the allocator in mem5.c in a different configuration.
|
sl@0
|
527 |
} -include {
|
sl@0
|
528 |
select1.test
|
sl@0
|
529 |
} -initialize {
|
sl@0
|
530 |
catch {db close}
|
sl@0
|
531 |
sqlite3_reset_auto_extension
|
sl@0
|
532 |
sqlite3_shutdown
|
sl@0
|
533 |
sqlite3_config_heap 40000000 16
|
sl@0
|
534 |
sqlite3_config_lookaside 0 0
|
sl@0
|
535 |
install_malloc_faultsim 1
|
sl@0
|
536 |
sqlite3_initialize
|
sl@0
|
537 |
autoinstall_test_functions
|
sl@0
|
538 |
} -shutdown {
|
sl@0
|
539 |
catch {db close}
|
sl@0
|
540 |
sqlite3_reset_auto_extension
|
sl@0
|
541 |
sqlite3_shutdown
|
sl@0
|
542 |
sqlite3_config_heap 0 0
|
sl@0
|
543 |
sqlite3_config_lookaside 100 500
|
sl@0
|
544 |
install_malloc_faultsim 1
|
sl@0
|
545 |
sqlite3_initialize
|
sl@0
|
546 |
}
|
sl@0
|
547 |
}
|
sl@0
|
548 |
|
sl@0
|
549 |
ifcapable threadsafe {
|
sl@0
|
550 |
run_tests "no_mutex_try" -description {
|
sl@0
|
551 |
The sqlite3_mutex_try() interface always fails
|
sl@0
|
552 |
} -exclude [concat $EXCLUDE mutex1.test mutex2.test] \
|
sl@0
|
553 |
-initialize {
|
sl@0
|
554 |
catch {db close}
|
sl@0
|
555 |
sqlite3_shutdown
|
sl@0
|
556 |
install_mutex_counters 1
|
sl@0
|
557 |
set ::disable_mutex_try 1
|
sl@0
|
558 |
} -shutdown {
|
sl@0
|
559 |
catch {db close}
|
sl@0
|
560 |
sqlite3_shutdown
|
sl@0
|
561 |
install_mutex_counters 0
|
sl@0
|
562 |
}
|
sl@0
|
563 |
}
|
sl@0
|
564 |
|
sl@0
|
565 |
run_tests "memsys6" -description {
|
sl@0
|
566 |
Run tests using the allocator in mem6.c.
|
sl@0
|
567 |
} -exclude {
|
sl@0
|
568 |
capi3.test capi3c.test
|
sl@0
|
569 |
} -initialize {
|
sl@0
|
570 |
catch {db close}
|
sl@0
|
571 |
sqlite3_reset_auto_extension
|
sl@0
|
572 |
sqlite3_shutdown
|
sl@0
|
573 |
sqlite3_config_chunkalloc 0
|
sl@0
|
574 |
install_malloc_faultsim 1
|
sl@0
|
575 |
sqlite3_initialize
|
sl@0
|
576 |
autoinstall_test_functions
|
sl@0
|
577 |
} -shutdown {
|
sl@0
|
578 |
catch {db close}
|
sl@0
|
579 |
sqlite3_reset_auto_extension
|
sl@0
|
580 |
sqlite3_shutdown
|
sl@0
|
581 |
sqlite3_config_heap 0 0
|
sl@0
|
582 |
install_malloc_faultsim 1
|
sl@0
|
583 |
sqlite3_initialize
|
sl@0
|
584 |
}
|
sl@0
|
585 |
|
sl@0
|
586 |
# run_tests "crash_safe_append" -description {
|
sl@0
|
587 |
# Run crash.test with persistent journals on a SAFE_APPEND file-system.
|
sl@0
|
588 |
# } -initialize {
|
sl@0
|
589 |
# rename crashsql sa_crashsql
|
sl@0
|
590 |
# proc crashsql {args} {
|
sl@0
|
591 |
# set options [lrange $args 0 [expr {[llength $args]-2}]]
|
sl@0
|
592 |
# lappend options -char safe_append
|
sl@0
|
593 |
# set sql [lindex $args end]
|
sl@0
|
594 |
# lappend options "
|
sl@0
|
595 |
# PRAGMA journal_mode=persistent;
|
sl@0
|
596 |
# $sql
|
sl@0
|
597 |
# "
|
sl@0
|
598 |
# set fd [open test.db-journal w]
|
sl@0
|
599 |
# puts $fd [string repeat 1234567890 100000]
|
sl@0
|
600 |
# close $fd
|
sl@0
|
601 |
# eval sa_crashsql $options
|
sl@0
|
602 |
# }
|
sl@0
|
603 |
# } -shutdown {
|
sl@0
|
604 |
# rename crashsql {}
|
sl@0
|
605 |
# rename sa_crashsql crashsql
|
sl@0
|
606 |
# } -include crash.test
|
sl@0
|
607 |
|
sl@0
|
608 |
run_tests "safe_append" -description {
|
sl@0
|
609 |
Run some tests on a SAFE_APPEND file-system.
|
sl@0
|
610 |
} -initialize {
|
sl@0
|
611 |
rename sqlite3 sqlite3_safeappend
|
sl@0
|
612 |
proc sqlite3 {args} {
|
sl@0
|
613 |
if {[string range [lindex $args 0] 0 0] ne "-"} {
|
sl@0
|
614 |
lappend args -vfs devsym
|
sl@0
|
615 |
}
|
sl@0
|
616 |
uplevel [concat sqlite3_safeappend $args]
|
sl@0
|
617 |
}
|
sl@0
|
618 |
sqlite3_simulate_device -char safe_append
|
sl@0
|
619 |
} -shutdown {
|
sl@0
|
620 |
rename sqlite3 {}
|
sl@0
|
621 |
rename sqlite3_shutdown sqlite3
|
sl@0
|
622 |
} -include [lsort [concat shared_err.test $ALLTESTS]] \
|
sl@0
|
623 |
-exclude async3.test
|
sl@0
|
624 |
|
sl@0
|
625 |
|
sl@0
|
626 |
# End of tests
|
sl@0
|
627 |
#############################################################################
|
sl@0
|
628 |
|
sl@0
|
629 |
if {$::perm::testmode eq "targets"} { puts "" ; exit }
|
sl@0
|
630 |
|
sl@0
|
631 |
# Restore the [sqlite3] command.
|
sl@0
|
632 |
#
|
sl@0
|
633 |
rename sqlite3 {}
|
sl@0
|
634 |
rename really_sqlite3 sqlite3
|
sl@0
|
635 |
|
sl@0
|
636 |
# Restore the [finish_test] command.
|
sl@0
|
637 |
#
|
sl@0
|
638 |
rename finish_test ""
|
sl@0
|
639 |
rename really_finish_test2 finish_test
|
sl@0
|
640 |
|
sl@0
|
641 |
# Restore the [do_test] command.
|
sl@0
|
642 |
#
|
sl@0
|
643 |
rename do_test ""
|
sl@0
|
644 |
rename really_do_test do_test
|
sl@0
|
645 |
|
sl@0
|
646 |
finish_test
|