From: drh Date: Sat, 7 Apr 2007 17:44:27 +0000 (+0000) Subject: Make sure autovacuum is turned off for malloc5.test. (CVS 3826) X-Git-Tag: version-3.6.10~2344 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=271d8cb0037535164857a7e0df4c69a38482f74e;p=thirdparty%2Fsqlite.git Make sure autovacuum is turned off for malloc5.test. (CVS 3826) FossilOrigin-Name: 105a7efb090a5619e82a7e2931d4d3e080e6465a --- diff --git a/manifest b/manifest index 1268356e08..adfe49d6b5 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C For\sfilesystem\sdatabases,\sdo\snot\sstore\sa\slist\sof\spages\sin\sthe\sstatement\sjournal\sin\smain\smemory.\s(CVS\s3825) -D 2007-04-07T15:03:17 +C Make\ssure\sautovacuum\sis\sturned\soff\sfor\smalloc5.test.\s(CVS\s3826) +D 2007-04-07T17:44:28 F Makefile.in 8cab54f7c9f5af8f22fd97ddf1ecfd1e1860de62 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -267,7 +267,7 @@ F test/malloc.test d868a6b98b07928b00bca3d9874daf6885c86150 F test/malloc2.test 4ed7d719542c4570dec9c2ebe2bbdf3a9f3b0d05 F test/malloc3.test e965954b6f808876a63d3101fd70370320b509a7 F test/malloc4.test 59cd02f71b363302a04c4e77b97c0a1572eaa210 -F test/malloc5.test ab22dcb9f0babc57126f55bfc6a6b6c7dd51c6cc +F test/malloc5.test f228cb7101ae403327824d327a1f5651d83ef0f2 F test/malloc6.test 025ae0b78542e0ddd000d23f79d93e9be9ba0f15 F test/malloc7.test 1cf52834509eac7ebeb92105dacd4669f9ca9869 F test/manydb.test 8de36b8d33aab5ef295b11d9e95310aeded31af8 @@ -455,7 +455,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P 3471a2269fb6b3769b59b70992e6da3bdebea7df -R fbb3aab61f7f8db520ad1a1642867d6f -U danielk1977 -Z 424d41e4ea9fa8fe57d130ff951bd83e +P 0af764a02695281b0a7d70ef4e7f8229fd3d6a30 +R 574b2e45ac21ec220cba673a080bdfc9 +U drh +Z 7a901112de51faeb7fd2ff67c07f3df5 diff --git a/manifest.uuid b/manifest.uuid index 2a4fb26a33..86bb14ff45 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -0af764a02695281b0a7d70ef4e7f8229fd3d6a30 \ No newline at end of file +105a7efb090a5619e82a7e2931d4d3e080e6465a \ No newline at end of file diff --git a/test/malloc5.test b/test/malloc5.test index a27529b21b..464c03a865 100644 --- a/test/malloc5.test +++ b/test/malloc5.test @@ -12,7 +12,7 @@ # This file contains test cases focused on the two memory-management APIs, # sqlite3_soft_heap_limit() and sqlite3_release_memory(). # -# $Id: malloc5.test,v 1.9 2007/04/05 13:12:14 danielk1977 Exp $ +# $Id: malloc5.test,v 1.10 2007/04/07 17:44:28 drh Exp $ #--------------------------------------------------------------------------- # NOTES ON EXPECTED BEHAVIOUR @@ -49,6 +49,7 @@ do_test malloc5-1.1 { # the sqlite_master root (page 1) is never freed because the btree layer # retains a reference to it for the entire transaction. execsql { + PRAGMA auto_vacuum=OFF; BEGIN; CREATE TABLE abc(a, b, c); } @@ -257,4 +258,3 @@ do_test malloc5-5.1 { sqlite3_soft_heap_limit $::soft_limit finish_test catch {db close} -