os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/malloc6.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
# 2006 June 25
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 attempts to check the library in an out-of-memory situation.
sl@0
    12
#
sl@0
    13
# $Id: malloc6.test,v 1.5 2008/02/18 22:24:58 drh Exp $
sl@0
    14
sl@0
    15
set testdir [file dirname $argv0]
sl@0
    16
source $testdir/tester.tcl
sl@0
    17
source $testdir/malloc_common.tcl
sl@0
    18
sl@0
    19
# Only run these tests if memory debugging is turned on.
sl@0
    20
#
sl@0
    21
if {!$MEMDEBUG} {
sl@0
    22
   puts "Skipping malloc6 tests: not compiled with -DSQLITE_MEMDEBUG..."
sl@0
    23
   finish_test
sl@0
    24
   return
sl@0
    25
}
sl@0
    26
sl@0
    27
sl@0
    28
set sqlite_os_trace 0
sl@0
    29
do_malloc_test malloc6-1 -tclprep {
sl@0
    30
  db close
sl@0
    31
} -tclbody {
sl@0
    32
  if {[catch {sqlite3 db test.db}]} {
sl@0
    33
    error "out of memory"
sl@0
    34
  }
sl@0
    35
  sqlite3_extended_result_codes db 1
sl@0
    36
} -sqlbody {
sl@0
    37
  DROP TABLE IF EXISTS t1;
sl@0
    38
  CREATE TABLE IF NOT EXISTS t1(
sl@0
    39
     a int, b float, c double, d text, e varchar(20),
sl@0
    40
     primary key(a,b,c)
sl@0
    41
  );
sl@0
    42
  CREATE TABLE IF NOT EXISTS t1(
sl@0
    43
     a int, b float, c double, d text, e varchar(20),
sl@0
    44
     primary key(a,b,c)
sl@0
    45
  );
sl@0
    46
  DROP TABLE IF EXISTS t1;
sl@0
    47
} 
sl@0
    48
sl@0
    49
# Ensure that no file descriptors were leaked.
sl@0
    50
do_test malloc6-1.X {
sl@0
    51
  catch {db close}
sl@0
    52
  set sqlite_open_file_count
sl@0
    53
} {0}
sl@0
    54
sl@0
    55
finish_test