1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Make sure autovacuum is turned off for malloc5.test. (CVS 3826)

FossilOrigin-Name: 105a7efb090a5619e82a7e2931d4d3e080e6465a
This commit is contained in:
drh
2007-04-07 17:44:27 +00:00
parent f35843b578
commit 271d8cb003
3 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

@@ -1 +1 @@
0af764a02695281b0a7d70ef4e7f8229fd3d6a30
105a7efb090a5619e82a7e2931d4d3e080e6465a

View 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}