1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Corrections to test names to eliminate duplicates and follow naming conventions.

FossilOrigin-Name: 50679889c75cd3205253b1682abfbddc5ff09175
This commit is contained in:
mistachkin
2012-10-07 05:34:39 +00:00
parent 08c1c3150b
commit 3038cfe90a
4 changed files with 38 additions and 38 deletions

View File

@ -170,7 +170,7 @@ do_test 3.1 {
}
} {}
do_test 3.3 {
do_test 3.2 {
set ::tf [launch_testfixture]
testfixture $::tf {
sqlite3 db test.db
@ -181,20 +181,20 @@ do_test 3.3 {
}
} {1 2}
do_test 3.2 {
do_test 3.3 {
db2 eval { SELECT * FROM t2 }
} {1 2}
do_test 3.3 {
do_test 3.4 {
list [catch { db1 eval COMMIT } msg] $msg
} {1 {database is locked}}
# At one point the following would fail, showing that the busy-handler
# belonging to [db2] was invoked instead.
do_test 3.4 {
do_test 3.5 {
set ::busyhandler_invoked_for
} {db1}
do_test 3.5 {
do_test 3.6 {
close $::tf
db1 eval COMMIT
} {}