diff options
author | drh <drh@noemail.net> | 2010-05-06 19:55:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-05-06 19:55:57 +0000 |
commit | fb4a626da0626d23c1cf812edd53b6a028f14bf6 (patch) | |
tree | bed07112b8e20824ab4861d5a5d6ec2d1b4e4d65 /test/permutations.test | |
parent | fd0686388150b6aa9dc7300246bc7d3d81bf7312 (diff) | |
download | sqlite-fb4a626da0626d23c1cf812edd53b6a028f14bf6.tar.gz sqlite-fb4a626da0626d23c1cf812edd53b6a028f14bf6.zip |
Exclude all WAL tests from the journaltest permutation.
FossilOrigin-Name: 46c97d7eee9359cd21139a6520633f5d16594ab0
Diffstat (limited to 'test/permutations.test')
-rw-r--r-- | test/permutations.test | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/permutations.test b/test/permutations.test index daf2c72bc..cf1760c14 100644 --- a/test/permutations.test +++ b/test/permutations.test @@ -81,6 +81,10 @@ foreach filename [glob $testdir/*.test] { if {[lsearch $EXCLUDE $filename] < 0} { lappend ALLTESTS $filename } } set ALLTESTS [lsort $ALLTESTS] +set WALTESTS [list] +foreach filename $ALLTESTS { + if {![regexp {^wal} $filename]} {lappend WALTESTS $filename} +} rename finish_test really_finish_test2 proc finish_test {} {} @@ -733,7 +737,7 @@ run_tests "journaltest" -description { #sqlite3_instvfs destroy binarylog unregister_jt_vfs } -include [concat $::ALLTESTS savepoint6.test -] -exclude { +] -exclude [concat $::WALTESTS { incrvacuum.test ioerr.test corrupt4.test @@ -741,7 +745,7 @@ run_tests "journaltest" -description { crash8.test async4.test bigfile.test -} +}] if {[info commands register_demovfs] != ""} { run_tests "demovfs" -description { |