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 #*************************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this script is testing the ATTACH statement and
13 # specifically out-of-memory conditions within that command.
15 # $Id: attachmalloc.test,v 1.9 2008/08/04 20:13:27 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 ifcapable !memdebug||!attach {
26 source $testdir/malloc_common.tcl
28 do_malloc_test attachmalloc-1 -tclprep {
30 for {set i 2} {$i<=4} {incr i} {
31 file delete -force test$i.db
32 file delete -force test$i.db-journal
35 if {[catch {sqlite3 db test.db}]} {
38 sqlite3_db_config_lookaside db 0 0 0
39 sqlite3_extended_result_codes db 1
41 ATTACH 'test2.db' AS two;
42 CREATE TABLE two.t1(x);
43 ATTACH 'test3.db' AS three;
44 CREATE TABLE three.t1(x);
45 ATTACH 'test4.db' AS four;
46 CREATE TABLE four.t1(x);