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 # This file contains test cases for sqlite3_db_release_memory and
13 # the PRAGMA shrink_memory statement.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
18 test_set_config_pagecache 0 0
20 if {[sqlite3_memory_used]==0} {
21 # SQLITE_DEFAULT_MEMSTATUS=0 build.
27 unset -nocomplain baseline
30 PRAGMA cache_size = 2000;
32 INSERT INTO t1 VALUES(randomblob(1000000),1);
34 set ::baseline [sqlite3_memory_used]
35 # EVIDENCE-OF: R-58814-63508 The sqlite3_db_release_memory(D) interface
36 # attempts to free as much heap memory as possible from database
38 sqlite3_db_release_memory db
39 expr {$::baseline > [sqlite3_memory_used]+500000}
42 set baseline [sqlite3_memory_used]
46 expr {$::baseline+500000 < [sqlite3_memory_used]}
49 set baseline [sqlite3_memory_used]
50 db eval {PRAGMA shrink_memory}
51 expr {$::baseline > [sqlite3_memory_used]+500000}
54 test_restore_config_pagecache