Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Exclude fts3cov.test from the "in memory" permutation test suite to avoid a false positive. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6af6794cac5516f8cbc425cb8c73468c |
User & Date: | shaneh 2010-07-09 18:43:41.000 |
Context
2010-07-09
| ||
19:32 | Exclude a few more FTS modules from the "in memory" permutation test suite. (check-in: 4e9d69cd5a user: shaneh tags: trunk) | |
18:43 | Exclude fts3cov.test from the "in memory" permutation test suite to avoid a false positive. (check-in: 6af6794cac user: shaneh tags: trunk) | |
12:57 | Fix warning under MSVC. (check-in: 0c32c4bbdd user: shaneh tags: trunk) | |
Changes
Changes to test/malloc_common.tcl.
︙ | ︙ | |||
617 618 619 620 621 622 623 | # Calculate the initial table checksum. set cksum1 [db one $cksumsql] if {$::DO_MALLOC_TEST } { set answers [list {1 {out of memory}} {0 {}}] if {$::DO_MALLOC_TEST==1} { | | | | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 | # Calculate the initial table checksum. set cksum1 [db one $cksumsql] if {$::DO_MALLOC_TEST } { set answers [list {1 {out of memory}} {0 {}}] if {$::DO_MALLOC_TEST==1} { set modes {100000 persistent} } else { set modes {1 transient} } } else { set answers [list {0 {}}] set modes [list 0 nofail] } set str [join $answers " OR "] |
︙ | ︙ |
Changes to test/permutations.test.
︙ | ︙ | |||
475 476 477 478 479 480 481 | } -presql { pragma journal_mode = 'memory' } -files [test_set $::allquicktests -exclude { # Exclude all tests that simulate IO errors. autovacuum_ioerr2.test incrvacuum_ioerr.test ioerr.test ioerr.test ioerr2.test ioerr3.test ioerr4.test ioerr5.test vacuum3.test incrblob_err.test diskfull.test backup_ioerr.test | | | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | } -presql { pragma journal_mode = 'memory' } -files [test_set $::allquicktests -exclude { # Exclude all tests that simulate IO errors. autovacuum_ioerr2.test incrvacuum_ioerr.test ioerr.test ioerr.test ioerr2.test ioerr3.test ioerr4.test ioerr5.test vacuum3.test incrblob_err.test diskfull.test backup_ioerr.test e_fts3.test fts3cov.test # Exclude test scripts that use tcl IO to access journal files or count # the number of fsync() calls. pager.test exclusive.test jrnlmode.test sync.test misc1.test journal1.test conflict.test crash8.test tkt3457.test io.test pager1.test async4.test corrupt.test filefmt.test pager2.test |
︙ | ︙ | |||
804 805 806 807 808 809 810 | set ::G(perm:prefix) $options(-prefix) set ::G(perm:presql) $options(-presql) set ::G(isquick) 1 uplevel $options(-initialize) foreach file [lsort $options(-files)] { | | | 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 | set ::G(perm:prefix) $options(-prefix) set ::G(perm:presql) $options(-presql) set ::G(isquick) 1 uplevel $options(-initialize) foreach file [lsort $options(-files)] { slave_test_file $::testdir/$file } uplevel $options(-shutdown) unset ::G(perm:name) unset ::G(perm:prefix) unset ::G(perm:presql) |
︙ | ︙ |