sl@0
|
1 |
# 2007 May 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 |
# These were all discovered by fuzzy generation of SQL. Apart from
|
sl@0
|
13 |
# that they have little in common.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: mallocB.test,v 1.9 2008/02/18 22:24:58 drh Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
set testdir [file dirname $argv0]
|
sl@0
|
19 |
source $testdir/tester.tcl
|
sl@0
|
20 |
source $testdir/malloc_common.tcl
|
sl@0
|
21 |
|
sl@0
|
22 |
# Only run these tests if memory debugging is turned on.
|
sl@0
|
23 |
#
|
sl@0
|
24 |
if {!$MEMDEBUG} {
|
sl@0
|
25 |
puts "Skipping mallocB tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
26 |
finish_test
|
sl@0
|
27 |
return
|
sl@0
|
28 |
}
|
sl@0
|
29 |
source $testdir/malloc_common.tcl
|
sl@0
|
30 |
|
sl@0
|
31 |
do_malloc_test mallocB-1 -sqlbody {SELECT - 456}
|
sl@0
|
32 |
do_malloc_test mallocB-2 -sqlbody {SELECT - 456.1}
|
sl@0
|
33 |
do_malloc_test mallocB-3 -sqlbody {SELECT random()}
|
sl@0
|
34 |
do_malloc_test mallocB-4 -sqlbody {SELECT length(zeroblob(1000))}
|
sl@0
|
35 |
ifcapable subquery {
|
sl@0
|
36 |
do_malloc_test mallocB-5 -sqlbody {SELECT * FROM (SELECT 1) GROUP BY 1;}
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
# The following test checks that there are no resource leaks following a
|
sl@0
|
40 |
# malloc() failure in sqlite3_set_auxdata().
|
sl@0
|
41 |
#
|
sl@0
|
42 |
# Note: This problem was not discovered by fuzzy generation of SQL. Not
|
sl@0
|
43 |
# that it really matters.
|
sl@0
|
44 |
#
|
sl@0
|
45 |
do_malloc_test mallocB-6 -sqlbody { SELECT test_auxdata('hello world'); }
|
sl@0
|
46 |
|
sl@0
|
47 |
do_malloc_test mallocB-7 -sqlbody {
|
sl@0
|
48 |
SELECT strftime(hex(randomblob(50)) || '%Y', 'now')
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
finish_test
|