1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Changes to make sure tests work when SQLITE_DEFAULT_AUTOVACUUM is defined. (CVS 2219)

FossilOrigin-Name: 6237c294d1211d5848bafb1310574e2486a43757
This commit is contained in:
danielk1977
2005-01-16 11:07:06 +00:00
parent 4e17d14c63
commit aac0a38d1f
5 changed files with 32 additions and 17 deletions

View File

@ -10,7 +10,7 @@
#***********************************************************************
# This file runs all tests.
#
# $Id: all.test,v 1.27 2005/01/13 11:07:54 danielk1977 Exp $
# $Id: all.test,v 1.28 2005/01/16 11:07:07 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -61,9 +61,13 @@ set EXCLUDE {
# SQLITE_DEFAULT_AUTOVACUUM macro is defined to true (because they depend
# on tables being allocated starting at page 2).
#
# Also corrupt.test doesn't work, because currently SQLite can't detect
# corruption in pointer-map pages.
#
ifcapable default_autovacuum {
lappend EXCLUDE btree2.test
lappend EXCLUDE btree4.test
lappend EXCLUDE corrupt.test
}
for {set Counter 0} {$Counter<$COUNT && $nErr==0} {incr Counter} {