]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Make sure autovacuum is turned off for malloc5.test. (CVS 3826)
authordrh <drh@noemail.net>
Sat, 7 Apr 2007 17:44:27 +0000 (17:44 +0000)
committerdrh <drh@noemail.net>
Sat, 7 Apr 2007 17:44:27 +0000 (17:44 +0000)
FossilOrigin-Name: 105a7efb090a5619e82a7e2931d4d3e080e6465a

manifest
manifest.uuid
test/malloc5.test

index 1268356e088578532faa02a488d239e85f960538..adfe49d6b5d6240c2c46e80ab0ea0dec238451ef 100644 (file)
--- 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
index 2a4fb26a33db8ad450a1012bd87f0ec6be20ebc2..86bb14ff452caea579cf367b8f675ba855796b40 100644 (file)
@@ -1 +1 @@
-0af764a02695281b0a7d70ef4e7f8229fd3d6a30
\ No newline at end of file
+105a7efb090a5619e82a7e2931d4d3e080e6465a
\ No newline at end of file
index a27529b21bf6c0993ffeee499e37e17c8553b73f..464c03a86561ec304ec159a21803ed9d17f39337 100644 (file)
@@ -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}
-