blob: 2cef24e018a7e89ee79a7487463e5ab288a6a17e [file] [log] [blame]
danielk1977c9cf9012007-05-30 10:36:47 +00001# 2007 May 30
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11# This file contains additional out-of-memory checks (see malloc.tcl).
12# These were all discovered by fuzzy generation of SQL. Apart from
13# that they have little in common.
14#
danielk1977e0fc5262007-07-26 06:50:05 +000015#
drhed138fb2007-08-22 22:04:37 +000016# $Id: mallocB.test,v 1.4 2007/08/22 22:04:37 drh Exp $
danielk1977c9cf9012007-05-30 10:36:47 +000017
18set testdir [file dirname $argv0]
19source $testdir/tester.tcl
20source $testdir/malloc_common.tcl
21
22# Only run these tests if memory debugging is turned on.
23#
drhed138fb2007-08-22 22:04:37 +000024ifcapable !memdebug {
danielk1977c9cf9012007-05-30 10:36:47 +000025 puts "Skipping malloc tests: not compiled with -DSQLITE_MEMDEBUG..."
26 finish_test
27 return
28}
drhed138fb2007-08-22 22:04:37 +000029source $testdir/malloc_common.tcl
danielk1977c9cf9012007-05-30 10:36:47 +000030
31do_malloc_test mallocB-1 -sqlbody {SELECT - 456}
32do_malloc_test mallocB-2 -sqlbody {SELECT - 456.1}
33do_malloc_test mallocB-3 -sqlbody {SELECT random()}
34do_malloc_test mallocB-4 -sqlbody {SELECT zeroblob(1000)}
danielk19779afe6892007-05-31 08:20:43 +000035do_malloc_test mallocB-5 -sqlbody {SELECT * FROM (SELECT 1) GROUP BY 1;}
danielk1977c9cf9012007-05-30 10:36:47 +000036
danielk1977e0fc5262007-07-26 06:50:05 +000037# The following test checks that there are no resource leaks following a
38# malloc() failure in sqlite3_set_auxdata().
39#
40# Note: This problem was not discovered by fuzzy generation of SQL. Not
41# that it really matters.
42#
43do_malloc_test mallocB-6 -sqlbody { SELECT test_auxdata('hello world'); }
44
danielk1977c9cf9012007-05-30 10:36:47 +000045finish_test