1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix the async.test test script so that it invokes (finish_test) even if the asynchronous backend is not included in the build (and no tests are run). (CVS 5700)

FossilOrigin-Name: 5c954b40ecb71203b1013c23cdac54ff83484b0a
This commit is contained in:
danielk1977
2008-09-15 14:47:21 +00:00
parent 78a906552d
commit 4ff6202642
3 changed files with 15 additions and 14 deletions

View File

@@ -6,16 +6,17 @@
#***********************************************************************
# This file runs all tests.
#
# $Id: async.test,v 1.13 2007/11/05 17:01:08 danielk1977 Exp $
if {[catch {sqlite3async_enable}]} {
# The async logic is not built into this system
return
}
# $Id: async.test,v 1.14 2008/09/15 14:47:21 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
if {[catch {sqlite3async_enable}]} {
# The async logic is not built into this system
finish_test
return
}
rename finish_test really_finish_test
proc finish_test {} {
catch {db close}