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

Re-enable the alt_pcache tests in permutations.test so that they run

automatically during a full regression.  Fix async.test so that it
works with the permutation.test pcacheNN test modules. (CVS 6486)

FossilOrigin-Name: 310192cc0fb56f8ffaa8e742f5600f16956212e7
This commit is contained in:
drh
2009-04-10 18:21:29 +00:00
parent 80167bf080
commit fe53f2e3f5
4 changed files with 17 additions and 14 deletions

View File

@@ -6,7 +6,7 @@
#***********************************************************************
# This file runs all tests.
#
# $Id: async.test,v 1.16 2009/03/28 15:04:24 drh Exp $
# $Id: async.test,v 1.17 2009/04/10 18:21:29 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -42,9 +42,9 @@ set INCLUDE {
# Enable asynchronous IO.
sqlite3async_enable 1
rename do_test really_do_test
rename do_test async_really_do_test
proc do_test {name args} {
uplevel really_do_test async_io-$name $args
uplevel async_really_do_test async_io-$name $args
sqlite3async_start
sqlite3async_halt idle
sqlite3async_wait
@@ -78,5 +78,7 @@ sqlite3async_enable 0
set sqlite3async_trace 0
really_finish_test
rename really_do_test do_test
rename do_test {}
rename async_really_do_test do_test
rename finish_test {}
rename really_finish_test finish_test