]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Increase the default timeout on fuzzcheck to 120 seconds - sufficient for
authordrh <drh@noemail.net>
Thu, 25 Jun 2015 02:25:28 +0000 (02:25 +0000)
committerdrh <drh@noemail.net>
Thu, 25 Jun 2015 02:25:28 +0000 (02:25 +0000)
running under valgrind on a slow workstation.

FossilOrigin-Name: fad0eacc64b1810f60cab73bc88ba380f99e4b2d

manifest
manifest.uuid
test/fuzzcheck.c

index 85cfb1970849f173fc0ffcbb0a98f8326ba34e1e..1fa55d575aeb46eaf2a30642d28699930ffc443d 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\s--timeout\soption\sto\sfuzzcheck.
-D 2015-06-24T23:44:30.800
+C Increase\sthe\sdefault\stimeout\son\sfuzzcheck\sto\s120\sseconds\s-\ssufficient\sfor\nrunning\sunder\svalgrind\son\sa\sslow\sworkstation.
+D 2015-06-25T02:25:28.876
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 1063c58075b7400d93326b0eb332b48a54f53025
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -657,7 +657,7 @@ F test/fuzz2.test 76dc35b32b6d6f965259508508abce75a6c4d7e1
 F test/fuzz3.test efd384b896c647b61a2c1848ba70d42aad60a7b3
 F test/fuzz_common.tcl a87dfbb88c2a6b08a38e9a070dabd129e617b45b
 F test/fuzz_malloc.test 328f70aaca63adf29b4c6f06505ed0cf57ca7c26
-F test/fuzzcheck.c d98fc1c0274a9e5590fe1da587a611fb5a9c8c60
+F test/fuzzcheck.c b973b06b500e6fc052d7059257cdf70df1f3a986
 F test/fuzzdata1.db 7ee3227bad0e7ccdeb08a9e6822916777073c664
 F test/fuzzdata2.db f03a420d3b822cc82e4f894ca957618fbe9c4973
 F test/fuzzdata3.db b83d0c20ae64113432c03d40c06ba473a4cb696b
@@ -1286,7 +1286,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 7a9c4eb30e6a834da20931b535c2894837d7d5d7
-R 7c2b29e0bcaa87a61978a31cdcf51c57
+P a8f4f7fa99e5e4131c1b59c0ac0597d62cedc0cd
+R 508695e79a938109fa0a0ec8f1e96553
 U drh
-Z 32917e3ef374b6bc2da8c725488de57e
+Z 7b0d664942c9398213b7ebd71a581018
index 82c4391168abd5ebf679f08965d9d9f044c9791c..ef92d695a8a0f1c010116eefcbcdc49575951503 100644 (file)
@@ -1 +1 @@
-a8f4f7fa99e5e4131c1b59c0ac0597d62cedc0cd
\ No newline at end of file
+fad0eacc64b1810f60cab73bc88ba380f99e4b2d
\ No newline at end of file
index ccb61e18bca14bf20c4190de99617e8cf8905141..d17a9a12898641cad1263bb82ba66d4dc876cbdb 100644 (file)
@@ -738,7 +738,7 @@ int main(int argc, char **argv){
   const char *zFailCode = 0;   /* Value of the TEST_FAILURE environment variable */
   int cellSzCkFlag = 0;        /* --cell-size-check */
   int sqlFuzz = 0;             /* True for SQL fuzz testing. False for DB fuzz */
-  int iTimeout = 60;           /* Default 60-second timeout */
+  int iTimeout = 120;          /* Default 120-second timeout */
 
   iBegin = timeOfDay();
 #ifdef __unix__