sl@0
|
1 |
# 2007 December 19
|
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 implements regression tests for SQLite library. The
|
sl@0
|
12 |
# focus of this file is testing for correct handling of I/O errors
|
sl@0
|
13 |
# in conjunction with very small soft-heap-limit values.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: ioerr3.test,v 1.2 2008/01/19 23:50:26 drh Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
do_ioerr_test ioerr3-1 -sqlprep {
|
sl@0
|
21 |
CREATE TABLE t1(id INTEGER, name TEXT);
|
sl@0
|
22 |
} -tclbody {
|
sl@0
|
23 |
sqlite3_soft_heap_limit 8192
|
sl@0
|
24 |
db cache size 0
|
sl@0
|
25 |
execsql BEGIN
|
sl@0
|
26 |
for {set ii 0} {$ii < 100} {incr ii} {
|
sl@0
|
27 |
execsql {
|
sl@0
|
28 |
INSERT INTO t1(id, name) VALUES (1,
|
sl@0
|
29 |
'A1234567890B1234567890C1234567890D1234567890E1234567890F1234567890G1234567890H1234567890I1234567890J1234567890K1234567890L1234567890M1234567890N1234567890O1234567890P1234567890Q1234567890R1234567890'
|
sl@0
|
30 |
);
|
sl@0
|
31 |
}
|
sl@0
|
32 |
}
|
sl@0
|
33 |
execsql COMMIT
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
do_ioerr_test ioerr3-2 -sqlbody {
|
sl@0
|
37 |
CREATE TEMP TABLE t1(x,y);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
sqlite3_soft_heap_limit 0
|
sl@0
|
41 |
|
sl@0
|
42 |
finish_test
|