Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix issue in mallocI test script where db handle not released. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dd59cea6c860ad11f1794f3689a60ca6 |
User & Date: | shaneh 2010-07-07 20:00:05.000 |
Context
2010-07-07
| ||
20:38 | Add the write-ahead log viewer/debugger tool to the tools/ folder. (check-in: 0e4bd44682 user: drh tags: trunk) | |
20:00 | Fix issue in mallocI test script where db handle not released. (check-in: dd59cea6c8 user: shaneh tags: trunk) | |
18:38 | Add further test cases to savepoint.test. (check-in: f825205dbf user: dan tags: trunk) | |
Changes
Changes to test/mallocI.test.
︙ | ︙ | |||
53 54 55 56 57 58 59 60 61 62 63 | SELECT * FROM t1 } -cleanup { do_test mallocI-4.$::n.2 { # If this INSERT is possible then [db] does not hold a shared lock # on the database file. catchsql { INSERT INTO t1 VALUES(1, 2, 3) } db2 } {0 {}} } catch { db2 close } finish_test | > | 53 54 55 56 57 58 59 60 61 62 63 64 | SELECT * FROM t1 } -cleanup { do_test mallocI-4.$::n.2 { # If this INSERT is possible then [db] does not hold a shared lock # on the database file. catchsql { INSERT INTO t1 VALUES(1, 2, 3) } db2 } {0 {}} catch {db2 close} } catch { db2 close } finish_test |