diff options
author | dan <dan@noemail.net> | 2015-06-23 15:06:13 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-06-23 15:06:13 +0000 |
commit | c94a08100b586edfb32335b1e38e3415d46e26fc (patch) | |
tree | 2b7f7570d954f06f1dbafc9eba65f0a98ef3fd8b /test/permutations.test | |
parent | 1153e60cf072db23b470ed3565766dba35e40512 (diff) | |
parent | 923cadb1ae3c4f1fbbc9bc11a818ea62474631f4 (diff) | |
download | sqlite-c94a08100b586edfb32335b1e38e3415d46e26fc.tar.gz sqlite-c94a08100b586edfb32335b1e38e3415d46e26fc.zip |
Merge latest trunk changes with this branch. Add tests for columnsize=0.
FossilOrigin-Name: ef44c71a22518727030dd90c0139af8973b05841
Diffstat (limited to 'test/permutations.test')
-rw-r--r-- | test/permutations.test | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/test/permutations.test b/test/permutations.test index 05c4ff92b..9881efb71 100644 --- a/test/permutations.test +++ b/test/permutations.test @@ -96,7 +96,7 @@ if {$::tcl_platform(platform)!="unix"} { set alltests [test_set $alltests -exclude { all.test async.test quick.test veryquick.test memleak.test permutations.test soak.test fts3.test - mallocAll.test rtree.test full.test + mallocAll.test rtree.test full.test extraquick.test }] set allquicktests [test_set $alltests -exclude { @@ -146,11 +146,22 @@ if {[info exists ::env(TEST_FAILURE)]} { lappend ::testsuitelist xxx test_suite "veryquick" -prefix "" -description { - "Very" quick test suite. Runs in less than 5 minutes on a workstation. + "Very" quick test suite. Runs in minutes on a workstation. This test suite is the same as the "quick" tests, except that some files that test malloc and IO errors are omitted. } -files [ - test_set $allquicktests -exclude *malloc* *ioerr* *fault* + test_set $allquicktests -exclude *malloc* *ioerr* *fault* *bigfile* +] + +test_suite "extraquick" -prefix "" -description { + "Extra" quick test suite. Runs in a few minutes on a workstation. + This test suite is the same as the "veryquick" tests, except that + slower tests are omitted. +} -files [ + test_set $allquicktests -exclude *malloc* *ioerr* *fault* *bigfile* \ + wal3.test fts4merge* sort2.test mmap1.test walcrash* \ + percentile.test where8m.test walcksum.test savepoint3.test \ + fuzzer1.test fuzzer3.test fts3expr3.test ] test_suite "mmap" -prefix "mm-" -description { |