First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
12 # Tests for the lookaside memory allocator.
14 # $Id: lookaside.test,v 1.6 2008/09/30 00:31:38 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
21 sqlite3_config_pagecache 0 0
22 sqlite3_config_scratch 0 0
26 # Make sure sqlite3_db_config() and sqlite3_db_status are working.
28 do_test lookaside-1.1 {
29 catch {sqlite3_config_error db}
31 do_test lookaside-1.2 {
32 sqlite3_db_config_lookaside db 1 18 18
34 do_test lookaside-1.3 {
35 sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0
37 do_test lookaside-1.4 {
38 db eval {CREATE TABLE t1(w,x,y,z);}
39 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0] break
40 expr {$x==0 && $y<$z && $z==18}
42 do_test lookaside-1.5 {
43 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 1] break
44 expr {$x==0 && $y<$z && $z==18}
46 do_test lookaside-1.6 {
47 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0] break
48 expr {$x==0 && $y==$z && $y<18}
50 do_test lookaside-1.7 {
52 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0] break
53 expr {$x==0 && $y==0 && $z<18}
55 do_test lookaside-1.8 {
57 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 1] break
58 expr {$x==0 && $y==0 && $z<18}
60 do_test lookaside-1.9 {
62 sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0
65 do_test lookaside-2.1 {
66 sqlite3_db_config_lookaside db 0 100 1000
68 do_test lookaside-2.2 {
69 db eval {CREATE TABLE t2(x);}
70 foreach {x y z} [sqlite3_db_status db SQLITE_DBSTATUS_LOOKASIDE_USED 0] break
71 expr {$x==0 && $y<$z && $z>10 && $z<100}
73 do_test lookaside-2.3 {
74 sqlite3_db_config_lookaside db 0 50 50
76 do_test lookaside-2.4 {
78 sqlite3_db_config_lookaside db 0 50 50
81 # sqlite3_db_status() with an invalid verb returns an error.
83 do_test lookaside-3.1 {
84 sqlite3_db_status db 99999 0
87 # Test that an invalid verb on sqlite3_config() is detected and
88 # reported as an error.
90 do_test lookaside-4.1 {
93 catch sqlite3_config_error