Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a test script problem in memsubsys2.test. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
70885729b7488474e7294212f9b33438 |
User & Date: | dan 2015-07-25 12:03:57.079 |
Context
2015-07-25
| ||
14:12 | Fix the wal3.test module so that it works with the memsubsys1 permutation. (check-in: af85b01d93 user: drh tags: trunk) | |
12:03 | Fix a test script problem in memsubsys2.test. (check-in: 70885729b7 user: dan tags: trunk) | |
03:10 | Disable the page cache bulk allocation for the shrink.test and wal.test modules. (check-in: 3418f1f165 user: drh tags: trunk) | |
Changes
Changes to test/memsubsys2.test.
︙ | ︙ | |||
76 77 78 79 80 81 82 | # sqlite3_memory_highwater 1 set highwater [sqlite3_memory_highwater 0] do_test memsubsys2-2.1 { sqlite3_free [set x [sqlite3_malloc 100000]] expr {$x!="0"} } {1} | | | > > > | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | # sqlite3_memory_highwater 1 set highwater [sqlite3_memory_highwater 0] do_test memsubsys2-2.1 { sqlite3_free [set x [sqlite3_malloc 100000]] expr {$x!="0"} } {1} do_test memsubsys2-2.2.1 { expr {[sqlite3_memory_highwater 0]>=[sqlite3_memory_used]+100000} } {1} do_test memsubsys2-2.2.2 { expr {[sqlite3_memory_highwater 0]>=$highwater+50000} } {1} # Test 3: Verify that turning of memstatus disables the statistics # tracking. # db close sqlite3_shutdown |
︙ | ︙ |