From: drh Date: Sat, 16 Jun 2007 14:19:36 +0000 (+0000) Subject: Add another scenario to the soak1.tcl script. (CVS 4081) X-Git-Tag: version-3.6.10~2093 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b3905ab5e19abba18926badfa295b03769af87a9;p=thirdparty%2Fsqlite.git Add another scenario to the soak1.tcl script. (CVS 4081) FossilOrigin-Name: 10e6822d4f1e0a94d5033b7b9efc1d8ed1e957d1 --- diff --git a/manifest b/manifest index 6db6574913..a843691f57 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C A\sminor\slogic\scorrection\sin\sthe\sprevious\scheck-in.\s\sAlso\sadded\sa\slengthy\r\ncomment\sdescribing\sthe\smeanings\sof\svarious\sflags\sin\sthe\s\r\n{quote:\sPgHdr}\sstructure.\s(CVS\s4080) -D 2007-06-16T11:17:46 +C Add\sanother\sscenario\sto\sthe\ssoak1.tcl\sscript.\s(CVS\s4081) +D 2007-06-16T14:19:37 F Makefile.in b9971ab07868cf2b3209fe3bf8c52e7e25af4193 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -444,7 +444,7 @@ F tool/opcodeDoc.awk b3a2a3d5d3075b8bd90b7afe24283efdd586659c F tool/report1.txt 9eae07f26a8fc53889b45fc833a66a33daa22816 F tool/showdb.c a086a3d788c7a23cb008317c3180ceb19f20bce0 F tool/showjournal.c ec3b171be148656827c4949fbfb8ab4370822f87 -F tool/soak1.tcl 9a738c78097e09a8ea6bbc2f35cb805f0dea211a +F tool/soak1.tcl ea809201ad19bf7fcdaa58c794c05bcbdfae4f9d F tool/space_used.tcl f714c41a59e326b8b9042f415b628b561bafa06b F tool/spaceanal.tcl f60a242a996a79d59cad6615cec83a9203e17911 F tool/speedtest.tcl 06c76698485ccf597b9e7dbb1ac70706eb873355 @@ -506,7 +506,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P c9dcf2b926c99ff9cee68589f364461ab2a1d11f -R 74c0238a5e30e1bd72611d04385a904b +P 57bf8204cde47dfeb31c064f2b128b9a8d94189f +R d7bfa5ee51c1074ea7aa01f17fe681ef U drh -Z 50e1ec7f55bb4b42bf19c7a688ba2066 +Z 380c1ba94ab41ce14e0117d755c9e29d diff --git a/manifest.uuid b/manifest.uuid index fff2b6d068..5301e6fb24 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -57bf8204cde47dfeb31c064f2b128b9a8d94189f \ No newline at end of file +10e6822d4f1e0a94d5033b7b9efc1d8ed1e957d1 \ No newline at end of file diff --git a/tool/soak1.tcl b/tool/soak1.tcl index 7f36932476..c6433c8a9d 100644 --- a/tool/soak1.tcl +++ b/tool/soak1.tcl @@ -78,6 +78,8 @@ scenario 2 {Everything} { SQLITE_ENABLE_REDEF_IO=1 } scenario 3 {Customer-1} { + SQLITE_DEBUG=1 SQLITE_MEMDEBUG=1 + THREADSAFE=1 OS_UNIX=1 SQLITE_DISABLE_LFS=1 SQLITE_DEFAULT_AUTOVACUUM=1 SQLITE_DEFAULT_PAGE_SIZE=1024 @@ -90,3 +92,13 @@ scenario 3 {Customer-1} { SQLITE_OMIT_VIRTUALTABLE=1 SQLITE_ENABLE_IOTRACE=1 } +scenario 4 {Small-Cache} { + SQLITE_DEBUG=1 SQLITE_MEMDEBUG=1 + THREADSAFE=1 OS_UNIX=1 + SQLITE_DEFAULT_AUTOVACUUM=1 + SQLITE_DEFAULT_PAGE_SIZE=1024 + SQLITE_MAX_PAGE_SIZE=2048 + SQLITE_DEFAULT_CACHE_SIZE=13 + SQLITE_DEFAULT_TEMP_CACHE_SIZE=11 + TEMP_STORE=1 +}