1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-23 11:22:09 +03:00

Updates to test scripts for better support of soft-heap-limit testing. (CVS 4209)

FossilOrigin-Name: 990f621f2247f1636e895dcf51fea1e08f202d31
This commit is contained in:
drh
2007-08-12 20:07:58 +00:00
parent 8940f4ee56
commit 3aefabaf94
12 changed files with 58 additions and 31 deletions

View File

@ -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}