Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Eliminate a race condition from lock4.test. (CVS 4855) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
85585f11049c4c3278dc2732676b0caa |
User & Date: | danielk1977 2008-03-13 04:53:53.000 |
Context
2008-03-13
| ||
18:28 | Add/move files in Makefile.in to bring it more in line with main.mk (CVS 4856) (check-in: b57fc81c3d user: mlcreech tags: trunk) | |
04:53 | Eliminate a race condition from lock4.test. (CVS 4855) (check-in: 85585f1104 user: danielk1977 tags: trunk) | |
2008-03-12
| ||
10:39 | Do not segfault after a parse error in a sub-select in a statement of the form "DELETE WHERE ... IN(sub-select)". Ticket #2991. (CVS 4854) (check-in: 3f9f81e908 user: danielk1977 tags: trunk) | |
Changes
Changes to test/lock4.test.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 2007 April 6 # # 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. The # focus of this script is database locks. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # 2007 April 6 # # 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. The # focus of this script is database locks. # # $Id: lock4.test,v 1.7 2008/03/13 04:53:53 danielk1977 Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl # Initialize the test.db database so that it is non-empty # |
︙ | ︙ | |||
58 59 60 61 62 63 64 65 66 67 68 69 70 71 | INSERT INTO t2 VALUES(2); } sqlite3 db test.db db timeout 1000000 db eval { INSERT INTO t1 VALUES(2); } db2 eval COMMIT exit } close $out db eval { BEGIN; INSERT INTO t1 VALUES(1); | > | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | INSERT INTO t2 VALUES(2); } sqlite3 db test.db db timeout 1000000 db eval { INSERT INTO t1 VALUES(2); } db close db2 eval COMMIT exit } close $out db eval { BEGIN; INSERT INTO t1 VALUES(1); |
︙ | ︙ |