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 |
# $Id: mallocD.test,v 1.6 2008/02/18 22:24:58 drh Exp $
|
sl@0
|
13 |
|
sl@0
|
14 |
set testdir [file dirname $argv0]
|
sl@0
|
15 |
source $testdir/tester.tcl
|
sl@0
|
16 |
source $testdir/malloc_common.tcl
|
sl@0
|
17 |
|
sl@0
|
18 |
# Only run these tests if memory debugging is turned on.
|
sl@0
|
19 |
#
|
sl@0
|
20 |
if {!$MEMDEBUG} {
|
sl@0
|
21 |
puts "Skipping mallocD tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
22 |
finish_test
|
sl@0
|
23 |
return
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
db close
|
sl@0
|
27 |
sqlite3_simulate_device -char atomic
|
sl@0
|
28 |
sqlite3 db test.db -vfs devsym
|
sl@0
|
29 |
|
sl@0
|
30 |
set PREP {
|
sl@0
|
31 |
PRAGMA page_size = 1024;
|
sl@0
|
32 |
CREATE TABLE abc(a, b, c);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
do_malloc_test mallocD-1 -sqlprep $PREP -sqlbody {
|
sl@0
|
36 |
INSERT INTO abc VALUES(1, 2, 3);
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
do_malloc_test mallocD-2 -sqlprep $PREP -sqlbody {
|
sl@0
|
40 |
BEGIN;
|
sl@0
|
41 |
INSERT INTO abc VALUES(1, 2, 3);
|
sl@0
|
42 |
INSERT INTO abc VALUES(4, 5, 6);
|
sl@0
|
43 |
ROLLBACK;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
do_malloc_test mallocD-3 -sqlprep $PREP -sqlbody {
|
sl@0
|
47 |
BEGIN;
|
sl@0
|
48 |
INSERT INTO abc VALUES(1, 2, 3);
|
sl@0
|
49 |
INSERT INTO abc VALUES(4, 5, randstr(1500,1500));
|
sl@0
|
50 |
COMMIT;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
ifcapable attach {
|
sl@0
|
54 |
do_malloc_test mallocD-4 -sqlprep $PREP -sqlbody {
|
sl@0
|
55 |
ATTACH 'test2.db' AS aux;
|
sl@0
|
56 |
BEGIN;
|
sl@0
|
57 |
CREATE TABLE aux.def(d, e, f);
|
sl@0
|
58 |
INSERT INTO abc VALUES(4, 5, 6);
|
sl@0
|
59 |
COMMIT;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
sqlite3_simulate_device -char {}
|
sl@0
|
64 |
|
sl@0
|
65 |
finish_test
|