Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | replaced relative lock proxy paths with absolute |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | apple-osx |
Files: | files | file ages | folders |
SHA1: |
6a88cd46aeef3c50c91d5aadc61dd0b0 |
User & Date: | adam 2010-09-10 00:59:29.000 |
Context
2010-09-10
| ||
20:19 | replaced relative lock proxy paths with absolute (check-in: 782c33512a user: adam tags: apple-osx) | |
00:59 | replaced relative lock proxy paths with absolute (check-in: 6a88cd46ae user: adam tags: apple-osx) | |
00:18 | Make sure SQLite is running with MEMSTATUS enabled at the beginning of every test script. (check-in: b6e9a4d8f7 user: drh tags: apple-osx) | |
Changes
Changes to test/lock6.test.
︙ | ︙ | |||
122 123 124 125 126 127 128 129 130 | set lockpath [execsql { PRAGMA lock_proxy_file=":auto:"; PRAGMA lock_proxy_file; } db] set lockpath } {{:auto: (not held)}} do_test lock6-1.4.1 { catchsql { | > > < | > > < | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | set lockpath [execsql { PRAGMA lock_proxy_file=":auto:"; PRAGMA lock_proxy_file; } db] set lockpath } {{:auto: (not held)}} set lpp [pwd]/notmine do_test lock6-1.4.1 { execsql "PRAGMA lock_proxy_file='$lpp'" catchsql { select * from sqlite_master; } db } {1 {database is locked}} do_test lock6-1.4.2 { execsql { PRAGMA lock_proxy_file; } db } $lpp do_test lock6-1.5 { testfixture $::tf1 { db eval { BEGIN; SELECT * FROM sqlite_master; } } } {} catch {testfixture $::tf1 {db close}} set lpp [pwd]/mine do_test lock6-1.6 { execsql "PRAGMA lock_proxy_file='$lpp'" execsql { select * from sqlite_master; } db } {} catch {close $::tf1} set env(SQLITE_FORCE_PROXY_LOCKING) $using_proxy set sqlite_hostid_num 0 |
︙ | ︙ |