danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 1 | # 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 | # |
danielk1977 | e0fc526 | 2007-07-26 06:50:05 +0000 | [diff] [blame] | 15 | # |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 16 | # $Id: mallocB.test,v 1.9 2008/02/18 22:24:58 drh Exp $ |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 17 | |
| 18 | set testdir [file dirname $argv0] |
| 19 | source $testdir/tester.tcl |
| 20 | source $testdir/malloc_common.tcl |
| 21 | |
| 22 | # Only run these tests if memory debugging is turned on. |
| 23 | # |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 24 | if {!$MEMDEBUG} { |
drh | 5a3032b | 2007-09-03 16:12:09 +0000 | [diff] [blame] | 25 | puts "Skipping mallocB tests: not compiled with -DSQLITE_MEMDEBUG..." |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 26 | finish_test |
| 27 | return |
| 28 | } |
drh | ed138fb | 2007-08-22 22:04:37 +0000 | [diff] [blame] | 29 | source $testdir/malloc_common.tcl |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 30 | |
| 31 | do_malloc_test mallocB-1 -sqlbody {SELECT - 456} |
| 32 | do_malloc_test mallocB-2 -sqlbody {SELECT - 456.1} |
| 33 | do_malloc_test mallocB-3 -sqlbody {SELECT random()} |
danielk1977 | a7a8e14 | 2008-02-13 18:25:27 +0000 | [diff] [blame] | 34 | do_malloc_test mallocB-4 -sqlbody {SELECT length(zeroblob(1000))} |
danielk1977 | 4152e67 | 2007-09-12 17:01:45 +0000 | [diff] [blame] | 35 | ifcapable subquery { |
| 36 | do_malloc_test mallocB-5 -sqlbody {SELECT * FROM (SELECT 1) GROUP BY 1;} |
| 37 | } |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 38 | |
danielk1977 | e0fc526 | 2007-07-26 06:50:05 +0000 | [diff] [blame] | 39 | # The following test checks that there are no resource leaks following a |
| 40 | # malloc() failure in sqlite3_set_auxdata(). |
| 41 | # |
| 42 | # Note: This problem was not discovered by fuzzy generation of SQL. Not |
| 43 | # that it really matters. |
| 44 | # |
| 45 | do_malloc_test mallocB-6 -sqlbody { SELECT test_auxdata('hello world'); } |
| 46 | |
drh | 3334e94 | 2008-01-17 20:26:46 +0000 | [diff] [blame] | 47 | do_malloc_test mallocB-7 -sqlbody { |
| 48 | SELECT strftime(hex(randomblob(50)) || '%Y', 'now') |
| 49 | } |
| 50 | |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 51 | finish_test |