diff options
author | drh <drh@noemail.net> | 2007-08-12 20:07:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-12 20:07:58 +0000 |
commit | 3aefabaf94e86c11d30ced084146ece63893a12c (patch) | |
tree | ba8ee686ebb431900bc81fe955b39f2b6503498f /test/lock2.test | |
parent | 8940f4ee566959b968e6fabf3e0e18500a38b8b6 (diff) | |
download | sqlite-3aefabaf94e86c11d30ced084146ece63893a12c.tar.gz sqlite-3aefabaf94e86c11d30ced084146ece63893a12c.zip |
Updates to test scripts for better support of soft-heap-limit testing. (CVS 4209)
FossilOrigin-Name: 990f621f2247f1636e895dcf51fea1e08f202d31
Diffstat (limited to 'test/lock2.test')
-rw-r--r-- | test/lock2.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lock2.test b/test/lock2.test index db43d0aba..d071844d0 100644 --- a/test/lock2.test +++ b/test/lock2.test @@ -11,7 +11,7 @@ # This file implements regression tests for SQLite library. The # focus of this script is database locks between competing processes. # -# $Id: lock2.test,v 1.7 2007/04/09 11:20:54 danielk1977 Exp $ +# $Id: lock2.test,v 1.8 2007/08/12 20:07:59 drh Exp $ set testdir [file dirname $argv0] @@ -101,6 +101,7 @@ do_test lock2-1.1 { do_test lock2-1.1.1 { execsql {pragma lock_status} } {main unlocked temp closed} +sqlite3_soft_heap_limit 0 do_test lock2-1.2 { execsql { BEGIN; @@ -163,5 +164,6 @@ do_test lock2-1.10 { catch {testfixture $::tf1 {db close}} catch {close $::tf1} +sqlite3_soft_heap_limit $soft_limit finish_test |