1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

In test case incrvacuum-15.1 close both db handles (db and db2) before attempting to delete test.db. Ticket #3614. (CVS 6216)

FossilOrigin-Name: e764a7c5d369e2ff736d662b1209b3d54d778caf
This commit is contained in:
shane
2009-01-30 05:47:15 +00:00
parent d87897dfa2
commit 6a91ca06b8
3 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@
# Note: There are also some tests for incremental vacuum and IO
# errors in incrvacuum_ioerr.test.
#
# $Id: incrvacuum.test,v 1.21 2008/12/27 15:23:13 danielk1977 Exp $
# $Id: incrvacuum.test,v 1.22 2009/01/30 05:47:15 shane Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -734,6 +734,7 @@ do_test incrvacuum-14.1 {
do_test incrvacuum-15.1 {
db close
db2 close
file delete -force test.db
sqlite3 db test.db
@ -774,6 +775,5 @@ do_test incrvacuum-15.1 {
}
} {ok}
db2 close
db3 close
finish_test