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/softheap1.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/softheap1.test')
-rw-r--r-- | test/softheap1.test | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/softheap1.test b/test/softheap1.test index 62231a446..97f5aac34 100644 --- a/test/softheap1.test +++ b/test/softheap1.test @@ -13,7 +13,7 @@ # A database corruption bug that occurs in auto_vacuum mode when # the soft_heap_limit is set low enough to be triggered. # -# $Id: softheap1.test,v 1.1 2007/08/10 19:46:44 drh Exp $ +# $Id: softheap1.test,v 1.2 2007/08/12 20:07:59 drh Exp $ set testdir [file dirname $argv0] @@ -24,10 +24,16 @@ do_test softheap1-1.1 { execsql { PRAGMA auto_vacuum=1; CREATE TABLE t1(x); - INSERT INTO t1 VALUES(hex(randomblob(5000))); + INSERT INTO t1 VALUES(hex(randomblob(1000))); BEGIN; + } + execsql { CREATE TABLE t2 AS SELECT * FROM t1; + } + execsql { ROLLBACK; + } + execsql { PRAGMA integrity_check; } } {ok} |