aboutsummaryrefslogtreecommitdiff
path: root/test/mallocG.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-01-23 12:52:40 +0000
committerdrh <drh@noemail.net>2008-01-23 12:52:40 +0000
commit01495b992158f6da5568bcc11e82d6844ffff4a8 (patch)
tree4317198de87b54f358a6515089518e65c364a860 /test/mallocG.test
parent7e8b848a60a305231cca0b8cfc7f08be5f0429bd (diff)
downloadsqlite-01495b992158f6da5568bcc11e82d6844ffff4a8.tar.gz
sqlite-01495b992158f6da5568bcc11e82d6844ffff4a8.zip
Improvements to test coverage in the lemon-generated parser and in the
sqlite3_get_table() interface. (CVS 4745) FossilOrigin-Name: 9f95d79daeb5e7f6fd62f3c896dae4d332121d1c
Diffstat (limited to 'test/mallocG.test')
-rw-r--r--test/mallocG.test16
1 files changed, 15 insertions, 1 deletions
diff --git a/test/mallocG.test b/test/mallocG.test
index a55cbce8d..57534feab 100644
--- a/test/mallocG.test
+++ b/test/mallocG.test
@@ -11,7 +11,7 @@
#
# This test script checks malloc failures in various obscure operations.
#
-# $Id: mallocG.test,v 1.1 2008/01/22 01:48:09 drh Exp $
+# $Id: mallocG.test,v 1.2 2008/01/23 12:52:41 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -39,4 +39,18 @@ do_malloc_test mallocG-2 -sqlprep {
SELECT y FROM t1 WHERE x IN t2;
}
+do_malloc_test mallocG-3 -sqlprep {
+ CREATE TABLE t1(x UNIQUE);
+ INSERT INTO t1 VALUES ('hello');
+ INSERT INTO t1 VALUES ('out there');
+} -sqlbody {
+ SELECT * FROM t1
+ WHERE x BETWEEN 'a' AND 'z'
+ AND x BETWEEN 'c' AND 'w'
+ AND x BETWEEN 'e' AND 'u'
+ AND x BETWEEN 'g' AND 'r'
+ AND x BETWEEN 'i' AND 'q'
+ AND x BETWEEN 'i' AND 'm'
+}
+
finish_test