Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Another attempt to fix permutations.test so that it excludes WAL tests from the journaltest permutation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
58c404429c5af167a82899fc4c736ed7 |
User & Date: | drh 2010-05-07 00:28:42.000 |
Context
2010-05-07
| ||
05:46 | Since walIndexTryHdr() can no longer encounter any error conditions, change tehe function signature so that it does not return an error code. This removes unreachable branches from other code. (check-in: 061a282cc0 user: dan tags: trunk) | |
00:28 | Another attempt to fix permutations.test so that it excludes WAL tests from the journaltest permutation. (check-in: 58c404429c user: drh tags: trunk) | |
2010-05-06
| ||
22:21 | Remove savepoint6.test from the set of tests run by journaltest since savepoint6.test uses journal_mode=WAL. (check-in: 811b45a96b user: drh tags: trunk) | |
Changes
Changes to test/permutations.test.
︙ | ︙ | |||
79 80 81 82 83 84 85 | foreach filename [glob $testdir/*.test] { set filename [file tail $filename] if {[lsearch $EXCLUDE $filename] < 0} { lappend ALLTESTS $filename } } set ALLTESTS [lsort $ALLTESTS] set WALTESTS [list] foreach filename $ALLTESTS { | | | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | foreach filename [glob $testdir/*.test] { set filename [file tail $filename] 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 {} {} rename do_test really_do_test |
︙ | ︙ | |||
732 733 734 735 736 737 738 | set ISQUICK 1 catch {db close} register_jt_vfs -default "" #sqlite3_instvfs binarylog -default binarylog ostrace.bin } -shutdown { #sqlite3_instvfs destroy binarylog unregister_jt_vfs | < | | 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 | set ISQUICK 1 catch {db close} register_jt_vfs -default "" #sqlite3_instvfs binarylog -default binarylog ostrace.bin } -shutdown { #sqlite3_instvfs destroy binarylog unregister_jt_vfs } -include $::ALLTESTS -exclude [concat $::WALTESTS { incrvacuum.test ioerr.test corrupt4.test io.test crash8.test async4.test bigfile.test |
︙ | ︙ |