Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix minor test suite problems causing errors on OSX. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
759c954fee215a64f21fe13491515eeb |
User & Date: | dan 2010-10-06 16:42:53.000 |
Context
2010-10-06
| ||
18:55 | Fix long-standing bugs with the handling of LIMIT clausing in compound SELECT statements with FROM clause subqueries. Ticket [38cb5df375078d3f9]. (check-in: b0450120ea user: drh tags: trunk) | |
16:42 | Fix minor test suite problems causing errors on OSX. (check-in: 759c954fee user: dan tags: trunk) | |
09:57 | Fix a bug in test code that was causing a valgrind error. No changes to production code. (check-in: f29da7bec6 user: dan tags: trunk) | |
Changes
Changes to test/lock6.test.
︙ | ︙ | |||
108 109 110 111 112 113 114 115 | set sqlite_hostid_num 3 do_test lock6-1.2 { execsql {pragma lock_status} } {main unlocked temp closed} sqlite3_soft_heap_limit 0 do_test lock6-1.3 { sqlite3 db test.db | > < | | | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | set sqlite_hostid_num 3 do_test lock6-1.2 { execsql {pragma lock_status} } {main unlocked temp closed} sqlite3_soft_heap_limit 0 do_test lock6-1.3 { list [catch { sqlite3 db test.db execsql { select * from sqlite_master } } msg] $msg } {1 {database is locked}} do_test lock6-1.4 { set lockpath [execsql { PRAGMA lock_proxy_file=":auto:"; PRAGMA lock_proxy_file; } db] |
︙ | ︙ |
Changes to test/pragma.test.
︙ | ︙ | |||
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 | PRAGMA lock_proxy_file; } db2] string match "*test2.db:auto:" $lockpath } {1} set sqlite_hostid_num 2 do_test pragma-16.7 { sqlite3 db test2.db execsql { PRAGMA lock_proxy_file=":auto:"; | > < < > > < | | | 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 | PRAGMA lock_proxy_file; } db2] string match "*test2.db:auto:" $lockpath } {1} set sqlite_hostid_num 2 do_test pragma-16.7 { list [catch { sqlite3 db test2.db execsql { PRAGMA lock_proxy_file=":auto:"; select * from sqlite_master; } } msg] $msg } {1 {database is locked}} db close do_test pragma-16.8 { list [catch { sqlite3 db test2.db execsql { select * from sqlite_master } } msg] $msg } {1 {database is locked}} db2 close do_test pragma-16.8.1 { execsql { PRAGMA lock_proxy_file="yetanotherproxy"; PRAGMA lock_proxy_file; |
︙ | ︙ |