sl@0
|
1 |
# 2007 April 30
|
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 contains additional out-of-memory checks (see malloc.tcl)
|
sl@0
|
12 |
# added to expose a bug in out-of-memory handling for sqlite3_prepare().
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: malloc9.test,v 1.5 2008/04/04 12:21:26 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 malloc9 tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
24 |
finish_test
|
sl@0
|
25 |
return
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
do_malloc_test malloc-9.1 -tclprep {
|
sl@0
|
30 |
set sql {CREATE TABLE t1(x)}
|
sl@0
|
31 |
set sqlbytes [string length $sql]
|
sl@0
|
32 |
append sql {; INSERT INTO t1 VALUES(1)}
|
sl@0
|
33 |
} -tclbody {
|
sl@0
|
34 |
if {[catch {sqlite3_prepare db $sql $sqlbytes TAIL} STMT]} {
|
sl@0
|
35 |
set msg $STMT
|
sl@0
|
36 |
set STMT {}
|
sl@0
|
37 |
error $msg
|
sl@0
|
38 |
}
|
sl@0
|
39 |
} -cleanup {
|
sl@0
|
40 |
if {$STMT!=""} {
|
sl@0
|
41 |
sqlite3_finalize $STMT
|
sl@0
|
42 |
}
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
# Ensure that no file descriptors were leaked.
|
sl@0
|
46 |
do_test malloc9-99.X {
|
sl@0
|
47 |
catch {db close}
|
sl@0
|
48 |
set sqlite_open_file_count
|
sl@0
|
49 |
} {0}
|
sl@0
|
50 |
|
sl@0
|
51 |
finish_test
|