sl@0
|
1 |
# 2007 Aug 29
|
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 |
# This test script checks malloc failures in various obscure operations.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: mallocG.test,v 1.5 2008/08/01 18:47:02 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
source $testdir/malloc_common.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Only run these tests if memory debugging is turned on.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
if {!$MEMDEBUG} {
|
sl@0
|
23 |
puts "Skipping mallocG tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
24 |
finish_test
|
sl@0
|
25 |
return
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
# Malloc failures while opening a database connection.
|
sl@0
|
29 |
#
|
sl@0
|
30 |
do_malloc_test mallocG-1 -tclbody {
|
sl@0
|
31 |
db close
|
sl@0
|
32 |
sqlite3 db test.db
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
do_malloc_test mallocG-2 -sqlprep {
|
sl@0
|
36 |
CREATE TABLE t1(x, y);
|
sl@0
|
37 |
CREATE TABLE t2(x INTEGER PRIMARY KEY);
|
sl@0
|
38 |
} -sqlbody {
|
sl@0
|
39 |
SELECT y FROM t1 WHERE x IN t2;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
do_malloc_test mallocG-3 -sqlprep {
|
sl@0
|
43 |
CREATE TABLE t1(x UNIQUE);
|
sl@0
|
44 |
INSERT INTO t1 VALUES ('hello');
|
sl@0
|
45 |
INSERT INTO t1 VALUES ('out there');
|
sl@0
|
46 |
} -sqlbody {
|
sl@0
|
47 |
SELECT * FROM t1
|
sl@0
|
48 |
WHERE x BETWEEN 'a' AND 'z'
|
sl@0
|
49 |
AND x BETWEEN 'c' AND 'w'
|
sl@0
|
50 |
AND x BETWEEN 'e' AND 'u'
|
sl@0
|
51 |
AND x BETWEEN 'g' AND 'r'
|
sl@0
|
52 |
AND x BETWEEN 'i' AND 'q'
|
sl@0
|
53 |
AND x BETWEEN 'i' AND 'm'
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
proc utf16 {utf8} {
|
sl@0
|
57 |
set utf16 [encoding convertto unicode $utf8]
|
sl@0
|
58 |
append utf16 "\x00\x00"
|
sl@0
|
59 |
return $utf16
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
do_malloc_test mallocG-4 -tclbody {
|
sl@0
|
63 |
set rc [sqlite3_complete16 [utf16 "SELECT * FROM t1;"]]
|
sl@0
|
64 |
if {$rc==1} {set rc 0} {error "out of memory"}
|
sl@0
|
65 |
set rc
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
finish_test
|