]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
In the async test, make sure procedures do not get renamed over top of one
authordrh <drh@noemail.net>
Fri, 10 Apr 2009 20:55:13 +0000 (20:55 +0000)
committerdrh <drh@noemail.net>
Fri, 10 Apr 2009 20:55:13 +0000 (20:55 +0000)
another. (CVS 6490)

FossilOrigin-Name: b6430cc4297c426f89e68f180a2c50b9b1ecd8e3

manifest
manifest.uuid
test/async.test

index 2af3200ca907c2f1cb20be7ddab18b2a77b8f516..1d46ee7ddd933c5b9132cf99f1a673f236766697 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Remove\sunused\sbranches\sfrom\sthe\svdbeapi.c\smodule.\s(CVS\s6489)
-D 2009-04-10T20:32:00
+C In\sthe\sasync\stest,\smake\ssure\sprocedures\sdo\snot\sget\srenamed\sover\stop\sof\sone\nanother.\s(CVS\s6490)
+D 2009-04-10T20:55:14
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -219,7 +219,7 @@ F test/alter3.test 25b95a136708f22b87184fa6a4309eea03d65153
 F test/alter4.test 9386ffd1e9c7245f43eca412b2058d747509cc1f
 F test/altermalloc.test e81ac9657ed25c6c5bb09bebfa5a047cd8e4acfc
 F test/analyze.test ad5329098fe4de4a96852231d53e3e9e6283ad4b
-F test/async.test 73d5abb33e36f806cedd54663375481ee292568d
+F test/async.test a4868349ff65bab9b40c42f34a3eea4ecbbb5de7
 F test/async2.test d3f23363553c2c02f15da98ae8bbc43420efd04c
 F test/async3.test e72255549dde94ef89e9779884001527b44c5389
 F test/attach.test 75a5d22f88e730967d68f2c9f95e786e3953d8e3
@@ -717,7 +717,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P deda5ab35e7663ba5f30c08b16ef3393d7146816
-R 7e5bddc43bc0a6227f5bedc4dc56ef95
+P 7ae0fc7ea55dc5b5fbeef20f476a00f619bd3c5c
+R aae29c72cce49a4b546414d3ba4cdcfd
 U drh
-Z ba13437a497941ce455ccaf2f065555f
+Z 878dbaef069122d49b369a1a4be93f79
index 44c62e7643d9e6808bd07a900a636671200c19ee..59d852a1d42785d4cea081c940b6b82e63ff5089 100644 (file)
@@ -1 +1 @@
-7ae0fc7ea55dc5b5fbeef20f476a00f619bd3c5c
\ No newline at end of file
+b6430cc4297c426f89e68f180a2c50b9b1ecd8e3
\ No newline at end of file
index c5283ad9f54693651b2826e3faa6157a52f711cf..5e075e15f53613f28b7c82d5233e4c3a0b6d7b35 100644 (file)
@@ -6,7 +6,7 @@
 #***********************************************************************
 # This file runs all tests.
 #
-# $Id: async.test,v 1.17 2009/04/10 18:21:29 drh Exp $
+# $Id: async.test,v 1.18 2009/04/10 20:55:14 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -17,7 +17,7 @@ if {[catch {sqlite3async_enable}]} {
   return
 }
 
-rename finish_test really_finish_test
+rename finish_test async_really_finish_test
 proc finish_test {} {
   catch {db close}
   catch {db2 close}
@@ -81,4 +81,4 @@ really_finish_test
 rename do_test {}
 rename async_really_do_test do_test
 rename finish_test {}
-rename really_finish_test finish_test
+rename async_really_finish_test finish_test