Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixes to the pcache10 and pcache90 permutations. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
597d40fa529073123a50ae6afc762c59 |
User & Date: | dan 2010-07-13 14:22:40.000 |
Context
2010-07-14
| ||
00:22 | Remove the xShmOpen method from the VFS. Shared-memory is opened automatically by a call to xShmMap. Rename the xShmClose method to xShmUnmap. (check-in: 2b68e50268 user: drh tags: trunk) | |
2010-07-13
| ||
14:33 | Add proposed interface change to sqlite.h.in. This commit breaks the build. (check-in: 52577bb5e7 user: dan tags: experimental) | |
14:22 | Fixes to the pcache10 and pcache90 permutations. (check-in: 597d40fa52 user: dan tags: trunk) | |
07:38 | Fix problems with running the async.test script. (check-in: 05ac254865 user: dan tags: trunk) | |
Changes
Changes to test/permutations.test.
︙ | ︙ | |||
657 658 659 660 661 662 663 | join.test join2.test rollback.test select1.test select2.test trans.test update.test } | > | | | | | | | | | | | | | | | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 | join.test join2.test rollback.test select1.test select2.test trans.test update.test } foreach discard_rate {0 10 50 90 100} { test_suite "pcache${discard_rate}" -description " Alternative pcache implementation with ${discard_rate}% random discard " -initialize " catch {db close} sqlite3_shutdown sqlite3_config_alt_pcache 1 $discard_rate 1 sqlite3_initialize autoinstall_test_functions " -shutdown { catch {db close} sqlite3_shutdown sqlite3_config_alt_pcache 0 0 0 sqlite3_config_lookaside 100 500 install_malloc_faultsim 1 sqlite3_initialize autoinstall_test_functions } -files ${perm-alt-pcache-testset} } test_suite "journaltest" -description { Check that pages are synced before being written (test_journal.c). } -initialize { catch {db close} register_jt_vfs -default "" } -shutdown { |
︙ | ︙ |