os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/attachmalloc.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2005 September 19
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
# This file implements regression tests for SQLite library.  The
sl@0
    12
# focus of this script is testing the ATTACH statement and
sl@0
    13
# specifically out-of-memory conditions within that command.
sl@0
    14
#
sl@0
    15
# $Id: attachmalloc.test,v 1.9 2008/08/04 20:13:27 drh Exp $
sl@0
    16
#
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
sl@0
    21
ifcapable !memdebug||!attach {
sl@0
    22
  finish_test
sl@0
    23
  return
sl@0
    24
}
sl@0
    25
sl@0
    26
source $testdir/malloc_common.tcl
sl@0
    27
sl@0
    28
do_malloc_test attachmalloc-1 -tclprep {
sl@0
    29
  db close
sl@0
    30
  for {set i 2} {$i<=4} {incr i} {
sl@0
    31
    file delete -force test$i.db
sl@0
    32
    file delete -force test$i.db-journal
sl@0
    33
  }
sl@0
    34
} -tclbody {
sl@0
    35
  if {[catch {sqlite3 db test.db}]} {
sl@0
    36
    error "out of memory"
sl@0
    37
  }
sl@0
    38
  sqlite3_db_config_lookaside db 0 0 0
sl@0
    39
  sqlite3_extended_result_codes db 1
sl@0
    40
} -sqlbody {
sl@0
    41
  ATTACH 'test2.db' AS two;
sl@0
    42
  CREATE TABLE two.t1(x);
sl@0
    43
  ATTACH 'test3.db' AS three;
sl@0
    44
  CREATE TABLE three.t1(x);
sl@0
    45
  ATTACH 'test4.db' AS four;
sl@0
    46
  CREATE TABLE four.t1(x);
sl@0
    47
}
sl@0
    48
sl@0
    49
finish_test