Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Zero the filesize-in-header word for bigfile.tcl. Remove bigfile.tcl from the journaltest permutation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
63610c71ca629de5e81950bc3c2ee601 |
User & Date: | drh 2010-04-01 16:15:57.000 |
Context
2010-04-01
| ||
18:33 | Disable the corruptE.test script when ENABLE_OVERSIZE_CELL_CHECK is on. (check-in: 1dc4f9fe9b user: drh tags: trunk) | |
16:15 | Zero the filesize-in-header word for bigfile.tcl. Remove bigfile.tcl from the journaltest permutation. (check-in: 63610c71ca user: drh tags: trunk) | |
13:41 | Do not journal the content of freelist leaf pages. This restores an optimization that was accidently undone by check-in [12f7346c13] on 2009-01-20. (check-in: b1e7a1a677 user: drh tags: trunk) | |
Changes
Changes to test/bigfile.test.
︙ | ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 | # db close if {[catch {fake_big_file 4096 [pwd]/test.db} msg]} { puts "**** Unable to create a file larger than 4096 MB. *****" finish_test return } do_test bigfile-1.2 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM | > | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | # db close if {[catch {fake_big_file 4096 [pwd]/test.db} msg]} { puts "**** Unable to create a file larger than 4096 MB. *****" finish_test return } hexio_write test.db 28 00000000 do_test bigfile-1.2 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM |
︙ | ︙ | |||
104 105 106 107 108 109 110 111 112 113 114 115 116 117 | db close if {[catch {fake_big_file 8192 [pwd]/test.db}]} { puts "**** Unable to create a file larger than 8192 MB. *****" finish_test return } do_test bigfile-1.5 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM | > | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | db close if {[catch {fake_big_file 8192 [pwd]/test.db}]} { puts "**** Unable to create a file larger than 8192 MB. *****" finish_test return } hexio_write test.db 28 00000000 do_test bigfile-1.5 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM |
︙ | ︙ | |||
142 143 144 145 146 147 148 149 150 151 152 153 154 155 | db close if {[catch {fake_big_file 16384 [pwd]/test.db}]} { puts "**** Unable to create a file larger than 16384 MB. *****" finish_test return } do_test bigfile-1.10 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM | > | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | db close if {[catch {fake_big_file 16384 [pwd]/test.db}]} { puts "**** Unable to create a file larger than 16384 MB. *****" finish_test return } hexio_write test.db 28 00000000 do_test bigfile-1.10 { sqlite3 db test.db execsql { SELECT md5sum(x) FROM t1; } } $::MAGIC_SUM |
︙ | ︙ |
Changes to test/permutations.test.
︙ | ︙ | |||
735 736 737 738 739 740 741 742 743 744 745 746 747 748 | ] -exclude { incrvacuum.test ioerr.test corrupt4.test io.test crash8.test async4.test } # End of tests ############################################################################# if {$::perm::testmode eq "targets"} { puts "" ; exit } | > | 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | ] -exclude { incrvacuum.test ioerr.test corrupt4.test io.test crash8.test async4.test bigfile.test } # End of tests ############################################################################# if {$::perm::testmode eq "targets"} { puts "" ; exit } |
︙ | ︙ |