sl@0
|
1 |
# 2007 May 24
|
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 |
# This file is the driver for the "soak" tests. It is a peer of the
|
sl@0
|
12 |
# quick.test and all.test scripts.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: soak.test,v 1.3 2008/07/12 14:52:20 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
rename finish_test really_finish_test
|
sl@0
|
19 |
proc finish_test {} {}
|
sl@0
|
20 |
|
sl@0
|
21 |
# By default, guarantee that the tests will run for at least 1 hour.
|
sl@0
|
22 |
#
|
sl@0
|
23 |
set TIMEOUT 3600
|
sl@0
|
24 |
|
sl@0
|
25 |
# Process command-line arguments.
|
sl@0
|
26 |
#
|
sl@0
|
27 |
if {[llength $argv]>0} {
|
sl@0
|
28 |
foreach {name value} $argv {
|
sl@0
|
29 |
switch -- $name {
|
sl@0
|
30 |
-timeout {
|
sl@0
|
31 |
set TIMEOUT $value
|
sl@0
|
32 |
}
|
sl@0
|
33 |
default {
|
sl@0
|
34 |
puts stderr "Unknown option: $name"
|
sl@0
|
35 |
exit
|
sl@0
|
36 |
}
|
sl@0
|
37 |
}
|
sl@0
|
38 |
}
|
sl@0
|
39 |
}
|
sl@0
|
40 |
set argv [list]
|
sl@0
|
41 |
|
sl@0
|
42 |
# Test plan:
|
sl@0
|
43 |
#
|
sl@0
|
44 |
# The general principle is to run those SQLite tests that use
|
sl@0
|
45 |
# pseudo-random data in some way over and over again for a very
|
sl@0
|
46 |
# long time. The number of tests run depends on the value of
|
sl@0
|
47 |
# global variable $TIMEOUT - tests are run for at least $TIMEOUT
|
sl@0
|
48 |
# seconds.
|
sl@0
|
49 |
#
|
sl@0
|
50 |
# fuzz.test (pseudo-random SQL statements)
|
sl@0
|
51 |
# trans.test (pseudo-random changes to a database followed by rollbacks)
|
sl@0
|
52 |
#
|
sl@0
|
53 |
# fuzzy malloc?
|
sl@0
|
54 |
#
|
sl@0
|
55 |
# Many database changes maintaining some kind of invariant.
|
sl@0
|
56 |
# Storing checksums etc.
|
sl@0
|
57 |
#
|
sl@0
|
58 |
|
sl@0
|
59 |
# List of test files that are run by this file.
|
sl@0
|
60 |
#
|
sl@0
|
61 |
set SOAKTESTS {
|
sl@0
|
62 |
fuzz.test
|
sl@0
|
63 |
fuzz_malloc.test
|
sl@0
|
64 |
trans.test
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
set ISQUICK 1
|
sl@0
|
68 |
|
sl@0
|
69 |
set soak_starttime [clock seconds]
|
sl@0
|
70 |
set soak_finishtime [expr {$soak_starttime + $TIMEOUT}]
|
sl@0
|
71 |
|
sl@0
|
72 |
# Loop until the timeout is reached or an error occurs.
|
sl@0
|
73 |
#
|
sl@0
|
74 |
for {set iRun 0} {[clock seconds] < $soak_finishtime && $nErr==0} {incr iRun} {
|
sl@0
|
75 |
|
sl@0
|
76 |
set iIdx [expr {$iRun % [llength $SOAKTESTS]}]
|
sl@0
|
77 |
source [file join $testdir [lindex $SOAKTESTS $iIdx]]
|
sl@0
|
78 |
catch {db close}
|
sl@0
|
79 |
|
sl@0
|
80 |
if {$sqlite_open_file_count>0} {
|
sl@0
|
81 |
puts "$tail did not close all files: $sqlite_open_file_count"
|
sl@0
|
82 |
incr nErr
|
sl@0
|
83 |
lappend ::failList $tail
|
sl@0
|
84 |
set sqlite_open_file_count 0
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
really_finish_test
|