diff options
author | dan <dan@noemail.net> | 2010-11-18 16:14:24 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-11-18 16:14:24 +0000 |
commit | bdd9af0fc82d956aa0a82784ebc1a232068b76fe (patch) | |
tree | 00603376d038207bf02df5544e71bba7d5ba46cc /test/wal3.test | |
parent | cdc1f049bf19766b4847cb59ec87b680e2982671 (diff) | |
download | sqlite-bdd9af0fc82d956aa0a82784ebc1a232068b76fe.tar.gz sqlite-bdd9af0fc82d956aa0a82784ebc1a232068b76fe.zip |
Update test cases to account for the change in the previous commit.
FossilOrigin-Name: ae089ec881beb1c2d278303ba964aaeffad1afe4
Diffstat (limited to 'test/wal3.test')
-rw-r--r-- | test/wal3.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/wal3.test b/test/wal3.test index c57132e07..84e321c27 100644 --- a/test/wal3.test +++ b/test/wal3.test @@ -427,7 +427,7 @@ do_test wal3-6.1.2 { } {o t t f} do_test wal3-6.1.3 { execsql { PRAGMA wal_checkpoint } db2 -} {} +} {0 7 7} # At this point the log file has been fully checkpointed. However, # connection [db3] holds a lock that prevents the log from being wrapped. @@ -515,7 +515,7 @@ proc lock_callback {method file handle spec} { } do_test wal3-6.2.2 { execsql { PRAGMA wal_checkpoint } -} {} +} {0 7 7} do_test wal3-6.2.3 { set ::R } {h h l b} @@ -624,7 +624,7 @@ do_test wal3-8.1 { INSERT INTO b VALUES('Markazi'); PRAGMA wal_checkpoint; } -} {wal} +} {wal 0 9 9} do_test wal3-8.2 { execsql { SELECT * FROM b } } {Tehran Qom Markazi} |