In corruptC.test, explicitly set "PRAGMA auto_vacuum = 0". (CVS 5895)

FossilOrigin-Name: b6563af8f9517760c2346a820e241b0517a10fe0
This commit is contained in:
danielk1977 2008-11-12 14:22:25 +00:00
parent 03c7a2f1a1
commit ef988b47a4
3 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Update\sthe\sversion\snumber\sto\s3.6.5.\s(CVS\s5894) C In\scorruptC.test,\sexplicitly\sset\s"PRAGMA\sauto_vacuum\s=\s0".\s(CVS\s5895)
D 2008-11-12T14:21:06 D 2008-11-12T14:22:25
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in 48172b58e444a9725ec482e0c022a564749acab4 F Makefile.in 48172b58e444a9725ec482e0c022a564749acab4
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@ -265,7 +265,7 @@ F test/corrupt8.test 9992ef7f67cefc576b92373f6bf5ab8775280f51
F test/corrupt9.test 794d284109c65c8f10a2b275479045e02d163bae F test/corrupt9.test 794d284109c65c8f10a2b275479045e02d163bae
F test/corruptA.test 99e95620b980161cb3e79f06a884a4bb8ae265ff F test/corruptA.test 99e95620b980161cb3e79f06a884a4bb8ae265ff
F test/corruptB.test 505331779fe7a96fe38ecbb817f19c63bc27d171 F test/corruptB.test 505331779fe7a96fe38ecbb817f19c63bc27d171
F test/corruptC.test 2211c09c5911ed43a4ac3ab87a9a1ddcdab89c9e F test/corruptC.test d73d70aa2919fae2e0032043e85d00949e1d556a
F test/crash.test 1b6ac8410689ff78028887f445062dc897c9ac89 F test/crash.test 1b6ac8410689ff78028887f445062dc897c9ac89
F test/crash2.test 5b14d4eb58b880e231361d3b609b216acda86651 F test/crash2.test 5b14d4eb58b880e231361d3b609b216acda86651
F test/crash3.test 776f9363554c029fcce71d9e6600fa0ba6359ce7 F test/crash3.test 776f9363554c029fcce71d9e6600fa0ba6359ce7
@ -656,7 +656,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
P ab418656dbf3d2e055b2462a155d90863fef6582 P f150b870e3a24d407d8d5ac374e2a7d0f4072a2d
R ab0f1dd33aa3f97dfdb4c83379a6f9dd R 5817a89914444a68af66344987870f0a
U drh U danielk1977
Z 9c9b36dc1efecbeb499191de93191367 Z 1189f30309a2273fde86c60fc35682c4

View File

@ -1 +1 @@
f150b870e3a24d407d8d5ac374e2a7d0f4072a2d b6563af8f9517760c2346a820e241b0517a10fe0

View File

@ -15,7 +15,7 @@
# data base file, then tests that single byte corruptions in # data base file, then tests that single byte corruptions in
# increasingly larger quantities are handled gracefully. # 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} catch {file delete -force test.db test.db-journal test.bu}
@ -29,6 +29,7 @@ expr srand(0)
# #
do_test corruptC-1.1 { do_test corruptC-1.1 {
execsql { execsql {
PRAGMA auto_vacuum = 0;
BEGIN; BEGIN;
CREATE TABLE t1(x,y); CREATE TABLE t1(x,y);
INSERT INTO t1 VALUES(1,1); INSERT INTO t1 VALUES(1,1);