Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a file descriptor leak in the exclusive2 test script. (CVS 3871) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2d2e68da74459340c262a6454fdd0514 |
User & Date: | drh 2007-04-25 12:06:59.000 |
Context
2007-08-14
| ||
13:20 | Back-port critical soft heap limit fixes to version 3.3.17. The following check-ins were back-ported: (4031), (4037), (4097), (4202), (4203), (4207), (4208), (4214). (CVS 4222) (Leaf check-in: f0029da32f user: drh tags: branch_3_3_17) | |
2007-04-25
| ||
12:07 | Version 3.3.17 (CVS 3872) (check-in: 16979f4525 user: drh tags: trunk) | |
12:06 | Fix a file descriptor leak in the exclusive2 test script. (CVS 3871) (check-in: 2d2e68da74 user: drh tags: trunk) | |
11:42 | Preparing for the release of 3.3.17. (CVS 3870) (check-in: e278c4ef60 user: drh tags: trunk) | |
Changes
Changes to test/exclusive2.test.
1 2 3 4 5 6 7 8 9 10 11 12 | # 2007 March 24 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # 2007 March 24 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # # $Id: exclusive2.test,v 1.5 2007/04/25 12:06:59 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl ifcapable {!pager_pragmas} { finish_test return |
︙ | ︙ | |||
157 158 159 160 161 162 163 164 165 166 167 168 169 170 | } $::sig do_test exclusive2-2.4 { set fd [open test.db RDWR] seek $fd 1024 puts -nonewline $fd [string repeat [binary format c 0] 10000] flush $fd t1sig } $::sig do_test exclusive2-2.5 { pagerChangeCounter test.db 5 } {5} do_test exclusive2-2.6 { | > | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | } $::sig do_test exclusive2-2.4 { set fd [open test.db RDWR] seek $fd 1024 puts -nonewline $fd [string repeat [binary format c 0] 10000] flush $fd close $fd t1sig } $::sig do_test exclusive2-2.5 { pagerChangeCounter test.db 5 } {5} do_test exclusive2-2.6 { |
︙ | ︙ |