mirror of
https://github.com/sqlite/sqlite.git
synced 2026-01-06 08:01:16 +03:00
to remove unreachable code. Additional test cases for improved test coverage. (CVS 4736) FossilOrigin-Name: 2a0bc1e186532a0bfe36ca18fda74a5e7a199227
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
# 2007 Aug 29
|
|
#
|
|
# The author disclaims copyright to this source code. In place of
|
|
# a legal notice, here is a blessing:
|
|
#
|
|
# May you do good and not evil.
|
|
# May you find forgiveness for yourself and forgive others.
|
|
# May you share freely, never taking more than you give.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
# This test script checks malloc failures in various obscure operations.
|
|
#
|
|
# $Id: mallocG.test,v 1.1 2008/01/22 01:48:09 drh Exp $
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
|
|
# Only run these tests if memory debugging is turned on.
|
|
#
|
|
ifcapable !memdebug {
|
|
puts "Skipping mallocG tests: not compiled with -DSQLITE_MEMDEBUG..."
|
|
finish_test
|
|
return
|
|
}
|
|
source $testdir/malloc_common.tcl
|
|
|
|
# Malloc failures while opening a database connection.
|
|
#
|
|
do_malloc_test malloeG-1 -tclbody {
|
|
db close
|
|
sqlite3 db test.db
|
|
}
|
|
|
|
do_malloc_test mallocG-2 -sqlprep {
|
|
CREATE TABLE t1(x, y);
|
|
CREATE TABLE t2(x INTEGER PRIMARY KEY);
|
|
} -sqlbody {
|
|
SELECT y FROM t1 WHERE x IN t2;
|
|
}
|
|
|
|
finish_test
|