Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Close stray statements prior to finishing trace.test, to avoid a file descriptor leak. (CVS 1965) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8bb0221da8ab49d766db7cd2f815ba2a |
User & Date: | drh 2004-09-17 20:46:55.000 |
Context
2004-09-17
| ||
20:47 | Create directories using "mkdir -p". Ticket #903. (CVS 1966) (check-in: 02de1cf95e user: drh tags: trunk) | |
20:46 | Close stray statements prior to finishing trace.test, to avoid a file descriptor leak. (CVS 1965) (check-in: 8bb0221da8 user: drh tags: trunk) | |
20:25 | The page_size pragma preserves the reserved area at the end of each page. (CVS 1964) (check-in: c34f3209e5 user: drh tags: trunk) | |
Changes
Changes to test/trace.test.
︙ | ︙ | |||
8 9 10 11 12 13 14 | # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # # This file implements tests for the "sqlite3_trace()" API. # | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # # This file implements tests for the "sqlite3_trace()" API. # # $Id: trace.test,v 1.4 2004/09/17 20:46:55 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl set ::stmtlist {} do_test trace-1.1 { set rc [catch {db trace 1 2 3} msg] |
︙ | ︙ | |||
71 72 73 74 75 76 77 78 79 80 | } {INSERT INTO t1 VALUES(2,3)} do_test trace-2.4 { execsql {SELECT * FROM t1} } {1 2 2 3 2 3} do_test trace-2.5 { set TRACE_OUT } {SELECT * FROM t1} finish_test | > | 71 72 73 74 75 76 77 78 79 80 81 | } {INSERT INTO t1 VALUES(2,3)} do_test trace-2.4 { execsql {SELECT * FROM t1} } {1 2 2 3 2 3} do_test trace-2.5 { set TRACE_OUT } {SELECT * FROM t1} catch {sqlite3_finalize $STMT} finish_test |