sl@0
|
1 |
# 2007 Aug 29
|
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 |
#
|
sl@0
|
12 |
# This test script checks that tickets #2794, #2795, #2796, and #2797
|
sl@0
|
13 |
# have been fixed.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: mallocF.test,v 1.4 2008/02/18 22:24:58 drh Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
source $testdir/malloc_common.tcl
|
sl@0
|
20 |
|
sl@0
|
21 |
# Only run these tests if memory debugging is turned on.
|
sl@0
|
22 |
#
|
sl@0
|
23 |
if {!$MEMDEBUG} {
|
sl@0
|
24 |
puts "Skipping mallocF tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
25 |
finish_test
|
sl@0
|
26 |
return
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
# tickets #2794 and #2795 and #2797
|
sl@0
|
30 |
#
|
sl@0
|
31 |
set PREP {
|
sl@0
|
32 |
CREATE TABLE t1(x,y);
|
sl@0
|
33 |
INSERT INTO t1 VALUES('abc123', 5);
|
sl@0
|
34 |
INSERT INTO t1 VALUES('xyz987', 42);
|
sl@0
|
35 |
}
|
sl@0
|
36 |
do_malloc_test malloeF-1 -sqlprep $PREP -sqlbody {
|
sl@0
|
37 |
SELECT * FROM t1 WHERE x GLOB 'abc*'
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
# ticket #2796
|
sl@0
|
41 |
#
|
sl@0
|
42 |
set PREP {
|
sl@0
|
43 |
CREATE TABLE t1(x PRIMARY KEY,y UNIQUE);
|
sl@0
|
44 |
INSERT INTO t1 VALUES('abc123', 5);
|
sl@0
|
45 |
INSERT INTO t1 VALUES('xyz987', 42);
|
sl@0
|
46 |
}
|
sl@0
|
47 |
do_malloc_test malloeF-2 -sqlprep $PREP -sqlbody {
|
sl@0
|
48 |
SELECT x FROM t1
|
sl@0
|
49 |
WHERE y=1 OR y=2 OR y=3 OR y=4 OR y=5
|
sl@0
|
50 |
OR y=6 OR y=7 OR y=8 OR y=9 OR y=10
|
sl@0
|
51 |
OR y=11 OR y=12 OR y=13 OR y=14 OR y=15
|
sl@0
|
52 |
OR y=x
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
set PREP {
|
sl@0
|
56 |
CREATE TABLE t1(x PRIMARY KEY,y UNIQUE);
|
sl@0
|
57 |
INSERT INTO t1 VALUES('abc123', 5);
|
sl@0
|
58 |
INSERT INTO t1 VALUES('xyz987', 42);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
do_malloc_test malloeF-3 -sqlprep $PREP -sqlbody {
|
sl@0
|
61 |
SELECT x FROM t1 WHERE y BETWEEN 10 AND 29
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
# Ticket #2843
|
sl@0
|
65 |
#
|
sl@0
|
66 |
set PREP {
|
sl@0
|
67 |
CREATE TABLE t1(x);
|
sl@0
|
68 |
CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGIN
|
sl@0
|
69 |
SELECT 'hello';
|
sl@0
|
70 |
END;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
do_malloc_test mallocF-4 -sqlprep $PREP -sqlbody {
|
sl@0
|
73 |
INSERT INTO t1 VALUES(random());
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
finish_test
|