1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# 2008 August 01
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# 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 test script checks malloc failures in various obscure operations.
#
# $Id: mallocH.test,v 1.2 2008/08/01 20:10:09 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
source $testdir/malloc_common.tcl
# Malloc failures in journaling of in-memory databases.
#
do_malloc_test mallocH-1 -tclprep {
db close
sqlite3 db :memory:
db eval {
CREATE TABLE t1(x UNIQUE, y);
INSERT INTO t1 VALUES(1,2);
}
} -sqlbody {
INSERT INTO t1 SELECT x+1, y+100 FROM t1;
}
# Malloc failures while parsing a CASE expression.
#
do_malloc_test mallocH-2 -sqlbody {
SELECT CASE WHEN 1 THEN 1 END;
}
# Malloc failures while parsing a EXISTS(SELECT ...)
#
do_malloc_test mallocH-3 -sqlbody {
SELECT 3+EXISTS(SELECT * FROM sqlite_master);
}
# Malloc failures within the replace() function.
#
do_malloc_test mallocH-3 -sqlbody {
SELECT replace('ababa','a','xyzzy');
}
# Malloc failures during EXPLAIN.
#
ifcapable explain {
do_malloc_test mallocH-4 -sqlprep {
CREATE TABLE abc(a PRIMARY KEY, b, c);
} -sqlbody {
EXPLAIN SELECT * FROM abc AS t2 WHERE rowid=1;
EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 WHERE rowid=1;
}
}
# Malloc failure during integrity_check pragma.
#
do_malloc_test mallocH-5 -sqlprep {
CREATE TABLE t1(a PRIMARY KEY, b UNIQUE);
CREATE TABLE t2(x,y);
INSERT INTO t1 VALUES(1,2);
INSERT INTO t2 SELECT * FROM t1;
} -sqlbody {
PRAGMA integrity_check;
}
finish_test
|