From: drh Date: Thu, 1 Jan 2015 18:54:23 +0000 (+0000) Subject: Fix an error in the computation of the number of hours of runtime for X-Git-Tag: version-3.8.8~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7203aed919d3b5118a8aaacbaab9c3d1b8120d36;p=thirdparty%2Fsqlite.git Fix an error in the computation of the number of hours of runtime for individual test runs in the releasetest.tcl script. FossilOrigin-Name: e2b0ebe21cd8a63927decb645efd2db80bf88379 --- diff --git a/manifest b/manifest index b7c0812559..cba0e35cee 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sa\sharmless\scompiler\swarning\sin\srtree. -D 2015-01-01T16:47:43.069 +C Fix\san\serror\sin\sthe\scomputation\sof\sthe\snumber\sof\shours\sof\sruntime\sfor\nindividual\stest\sruns\sin\sthe\sreleasetest.tcl\sscript. +D 2015-01-01T18:54:23.534 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 7cd23e4fc91004a6bd081623e1bc6932e44828c0 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -801,7 +801,7 @@ F test/randexpr1.test eda062a97e60f9c38ae8d806b03b0ddf23d796df F test/rdonly.test dd30a4858d8e0fbad2304c2bd74a33d4df36412a F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254 -F test/releasetest.tcl 9440b21870bc25c9303e7a2adc0708257249295a +F test/releasetest.tcl 183f35a18840152f24bfe0a24d9346f815ccd218 F test/resolver01.test 33abf37ff8335e6bf98f2b45a0af3e06996ccd9a F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 @@ -1234,7 +1234,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 66269d0d8e49eb3dc7f508714753584f648bb022 -R e5d27e633a5b491c2ea88ea18c8cfd90 +P 30891c6b8ebe9dfc939f9695bb45a159fbaaf262 +R ff7c096e1b65892104ff528c7034919c U drh -Z a7e9ba08973a7605802bac8950dbf017 +Z 2f878e885c01058106b8fb811cc67e19 diff --git a/manifest.uuid b/manifest.uuid index c0a63b890d..dcdae3e8de 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -30891c6b8ebe9dfc939f9695bb45a159fbaaf262 \ No newline at end of file +e2b0ebe21cd8a63927decb645efd2db80bf88379 \ No newline at end of file diff --git a/test/releasetest.tcl b/test/releasetest.tcl index 96e7ffb4b2..3a9ee3311a 100644 --- a/test/releasetest.tcl +++ b/test/releasetest.tcl @@ -287,7 +287,7 @@ proc run_test_suite {name testtarget config} { dryrun cd $origdir if {!$::DRYRUN} { - set hours [expr {($tm2-$tm2)/3600}] + set hours [expr {($tm2-$tm1)/3600}] set minutes [expr {(($tm2-$tm1)/60)%60}] set seconds [expr {($tm2-$tm1)%60}] set tm [format (%02d:%02d:%02d) $hours $minutes $seconds]