Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Disable memory-mapped I/O for the win32lock.test module |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2b3d9805a28e51f646113e22c2dff227 |
User & Date: | drh 2013-04-04 17:28:11.286 |
Context
2013-04-04
| ||
19:32 | Add further multi-client tests to mmap1.test. (check-in: a107f75d93 user: dan tags: trunk) | |
17:28 | Disable memory-mapped I/O for the win32lock.test module (check-in: 2b3d9805a2 user: drh tags: trunk) | |
01:54 | Updates to the file-control documentation. No changes to code. (check-in: 51fab480d0 user: drh tags: trunk) | |
Changes
Changes to test/win32lock.test.
︙ | ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | db close sqlite3_shutdown test_sqlite3_log xLog proc xLog {error_code msg} { lappend ::log $msg } sqlite3 db test.db do_test win32lock-1.1 { db eval { PRAGMA cache_size=10; CREATE TABLE t1(x,y); INSERT INTO t1 VALUES(1,randomblob(100000)); INSERT INTO t1 VALUES(2,randomblob(50000)); | > | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | db close sqlite3_shutdown test_sqlite3_log xLog proc xLog {error_code msg} { lappend ::log $msg } sqlite3 db test.db db eval {PRAGMA mmap_limit=0} do_test win32lock-1.1 { db eval { PRAGMA cache_size=10; CREATE TABLE t1(x,y); INSERT INTO t1 VALUES(1,randomblob(100000)); INSERT INTO t1 VALUES(2,randomblob(50000)); |
︙ | ︙ |