]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix progress test error 1-2 (CVS 1115)
authorpeter <peter@noemail.net>
Thu, 23 Oct 2003 15:27:11 +0000 (15:27 +0000)
committerpeter <peter@noemail.net>
Thu, 23 Oct 2003 15:27:11 +0000 (15:27 +0000)
FossilOrigin-Name: c3a495026c7eafd576042a05a9a5f585ba8ba9b9

manifest
manifest.uuid
test/tclsqlite.test

index 144338793ac81b5337efe9c39bbadbcb2fcc70cb..56c54a445dd8dff9ea9e5b5be4d6c9e339db8d75 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Comment\schanges\sto\sthe\slemon\sparser\stemplate.\s\sChange\ssome\ssqliteMalloc()\scalls\nto\ssqliteMallocRaw()\sfor\sspeed.\s\sUpdate\sthe\swebsite\stemplate.\s(CVS\s1114)
-D 2003-10-22T22:15:28
+C Fix\sprogress\stest\serror\s1-2\s(CVS\s1115)
+D 2003-10-23T15:27:12
 F Makefile.in ab585a91e34bc33928a1b6181fa2f6ebd4fb17e1
 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -123,7 +123,7 @@ F test/sort.test ba07b107c16070208e6aab3cadea66ba079d85ba
 F test/subselect.test f0fea8cf9f386d416d64d152e3c65f9116d0f50f
 F test/table.test 371a1fc1c470982b2f68f9732f903a5d96f949c4
 F test/tableapi.test d881e787779a175238b72f55b5e50d3a85ab47a6
-F test/tclsqlite.test 964fd2f6c11d384ab784c2afe52130f34261ce2d
+F test/tclsqlite.test f141303e0f2e9a616b551813e2b21bd38c5dca50
 F test/temptable.test c82bd6f800f10e8cf96921af6315e5f1c21e2692
 F test/tester.tcl 2671536d3650c29e7c105219f277568b0884cb58
 F test/trans.test 75e7a171b5d2d94ee56766459113e2ad0e5f809d
@@ -174,7 +174,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3
 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
 F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
-P c0d1b26966aeb445fea5792e5a9e93632e758c2a
-R 2cd08c2a268077f9c1fb1e5464683f42
-U drh
-Z e34714b150e14d157798b16491a3dc4f
+P c637caf13f579959ecdb6b134d0114e8efbcac60
+R 836e4a87e08b64cd5a3c29c6f69b3de9
+U peter
+Z efd6d1a18f32d0e0f9939dc422d205d4
index af625f571951741cd0e9624d77676d04e7c49891..4c4eeee46e4b71214d434a84f371623469819695 100644 (file)
@@ -1 +1 @@
-c637caf13f579959ecdb6b134d0114e8efbcac60
\ No newline at end of file
+c3a495026c7eafd576042a05a9a5f585ba8ba9b9
\ No newline at end of file
index d8449892398b607728807ef2f21b2ec7ad52118a..6d33259411d173108dd9cd5a3103e9380a6e0314 100644 (file)
@@ -15,7 +15,7 @@
 # interface is pretty well tested.  This file contains some addition
 # tests for fringe issues that the main test suite does not cover.
 #
-# $Id: tclsqlite.test,v 1.15 2003/08/23 22:40:54 drh Exp $
+# $Id: tclsqlite.test,v 1.16 2003/10/23 15:27:12 peter Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -29,7 +29,7 @@ do_test tcl-1.1 {
 do_test tcl-1.2 {
   set v [catch {db bogus} msg]
   lappend v $msg
-} {1 {bad option "bogus": must be authorizer, busy, changes, close, complete, errorcode, eval, function, last_insert_rowid, onecolumn, timeout, or trace}}
+} {1 {bad option "bogus": must be authorizer, busy, changes, close, complete, errorcode, eval, function, last_insert_rowid, onecolumn, timeout, trace, or progress}}
 do_test tcl-1.3 {
   execsql {CREATE TABLE t1(a int, b int)}
   execsql {INSERT INTO t1 VALUES(10,20)}