mirror of
https://github.com/sqlite/sqlite.git
synced 2025-06-25 09:02:03 +03:00
The crash8.test depends on auto_vacuum being off. Make sure that is the
case. (CVS 6165) FossilOrigin-Name: 3538d2a981c5abfe2f88aec75175ae33475e6bcb
This commit is contained in:
@ -15,7 +15,7 @@
|
||||
# Later: Also, some other specific scenarios required for coverage
|
||||
# testing that do not lead to corruption.
|
||||
#
|
||||
# $Id: crash8.test,v 1.3 2009/01/10 16:15:09 danielk1977 Exp $
|
||||
# $Id: crash8.test,v 1.4 2009/01/11 00:44:48 drh Exp $
|
||||
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
@ -28,6 +28,7 @@ ifcapable !crashtest {
|
||||
|
||||
do_test crash8-1.1 {
|
||||
execsql {
|
||||
PRAGMA auto_vacuum=OFF;
|
||||
CREATE TABLE t1(a, b);
|
||||
CREATE INDEX i1 ON t1(a, b);
|
||||
INSERT INTO t1 VALUES(1, randstr(1000,1000));
|
||||
|
Reference in New Issue
Block a user