]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
In corruptC.test, explicitly set "PRAGMA auto_vacuum = 0". (CVS 5895)
authordanielk1977 <danielk1977@noemail.net>
Wed, 12 Nov 2008 14:22:25 +0000 (14:22 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Wed, 12 Nov 2008 14:22:25 +0000 (14:22 +0000)
FossilOrigin-Name: b6563af8f9517760c2346a820e241b0517a10fe0

manifest
manifest.uuid
test/corruptC.test

index ddeb808f29e4faeadd40b0d1d04282847189f26c..1125a95945c595c9e9ba5d8ad0a9908771613cac 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Update\sthe\sversion\snumber\sto\s3.6.5.\s(CVS\s5894)
-D 2008-11-12T14:21:06
+C In\scorruptC.test,\sexplicitly\sset\s"PRAGMA\sauto_vacuum\s=\s0".\s(CVS\s5895)
+D 2008-11-12T14:22:25
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 48172b58e444a9725ec482e0c022a564749acab4
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -265,7 +265,7 @@ F test/corrupt8.test 9992ef7f67cefc576b92373f6bf5ab8775280f51
 F test/corrupt9.test 794d284109c65c8f10a2b275479045e02d163bae
 F test/corruptA.test 99e95620b980161cb3e79f06a884a4bb8ae265ff
 F test/corruptB.test 505331779fe7a96fe38ecbb817f19c63bc27d171
-F test/corruptC.test 2211c09c5911ed43a4ac3ab87a9a1ddcdab89c9e
+F test/corruptC.test d73d70aa2919fae2e0032043e85d00949e1d556a
 F test/crash.test 1b6ac8410689ff78028887f445062dc897c9ac89
 F test/crash2.test 5b14d4eb58b880e231361d3b609b216acda86651
 F test/crash3.test 776f9363554c029fcce71d9e6600fa0ba6359ce7
@@ -656,7 +656,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P ab418656dbf3d2e055b2462a155d90863fef6582
-R ab0f1dd33aa3f97dfdb4c83379a6f9dd
-U drh
-Z 9c9b36dc1efecbeb499191de93191367
+P f150b870e3a24d407d8d5ac374e2a7d0f4072a2d
+R 5817a89914444a68af66344987870f0a
+U danielk1977
+Z 1189f30309a2273fde86c60fc35682c4
index 8941590b8670cd88fb72c7baeae43a866b143b38..483031264fb29d99d79a192f2d35771860655f67 100644 (file)
@@ -1 +1 @@
-f150b870e3a24d407d8d5ac374e2a7d0f4072a2d
\ No newline at end of file
+b6563af8f9517760c2346a820e241b0517a10fe0
\ No newline at end of file
index ac1e89c971886cbce865d156d0c7695a0493e473..bcf654e8c708f7ce51cfff965978bc4657f6dc57 100644 (file)
@@ -15,7 +15,7 @@
 # data base file, then tests that single byte corruptions in 
 # increasingly larger quantities are handled gracefully.
 #
-# $Id: corruptC.test,v 1.6 2008/11/12 11:57:42 danielk1977 Exp $
+# $Id: corruptC.test,v 1.7 2008/11/12 14:22:25 danielk1977 Exp $
 
 catch {file delete -force test.db test.db-journal test.bu}
 
@@ -29,6 +29,7 @@ expr srand(0)
 #
 do_test corruptC-1.1 {
   execsql {
+    PRAGMA auto_vacuum = 0;
     BEGIN;
     CREATE TABLE t1(x,y);
     INSERT INTO t1 VALUES(1,1);