Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjust the maximum number of open database connections in wal3.test down for OpenBSD. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b38e52f67574997de9f4b4318f2eb68f |
User & Date: | drh 2011-07-22 10:53:05.152 |
Context
2011-07-22
| ||
11:16 | Add makefile targets sqlite3-all.c. (check-in: 71f7be586f user: drh tags: trunk) | |
10:53 | Adjust the maximum number of open database connections in wal3.test down for OpenBSD. (check-in: b38e52f675 user: drh tags: trunk) | |
10:33 | Use $(TCLSH_CMD) instead of tclsh in the autoconf makefile. (check-in: fd36d8067b user: drh tags: trunk) | |
Changes
Changes to test/wal3.test.
︙ | ︙ | |||
703 704 705 706 707 708 709 | # # This test case verifies that if an exclusive lock cannot be obtained # on any aReadMark[] slot (because there are already several readers), # the client takes a shared-lock on a slot without modifying the value # and continues. # set nConn 50 | | | 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | # # This test case verifies that if an exclusive lock cannot be obtained # on any aReadMark[] slot (because there are already several readers), # the client takes a shared-lock on a slot without modifying the value # and continues. # set nConn 50 if { [string match *BSD $tcl_platform(os)] } { set nConn 25 } do_test wal3-9.0 { file delete -force test.db test.db-journal test.db wal sqlite3 db test.db execsql { PRAGMA page_size = 1024; PRAGMA journal_mode = WAL; CREATE TABLE whoami(x); |
︙ | ︙ | |||
780 781 782 783 784 785 786 | do_test wal3-10.$tn.2 { sql2 {PRAGMA integrity_check} } {ok} } finish_test | < | 780 781 782 783 784 785 786 | do_test wal3-10.$tn.2 { sql2 {PRAGMA integrity_check} } {ok} } finish_test |