]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix an error in the computation of the number of hours of runtime for
authordrh <drh@noemail.net>
Thu, 1 Jan 2015 18:54:23 +0000 (18:54 +0000)
committerdrh <drh@noemail.net>
Thu, 1 Jan 2015 18:54:23 +0000 (18:54 +0000)
individual test runs in the releasetest.tcl script.

FossilOrigin-Name: e2b0ebe21cd8a63927decb645efd2db80bf88379

manifest
manifest.uuid
test/releasetest.tcl

index b7c08125594bda7d94fc854a73af4eaa13502134..cba0e35cee027461b1e946c0b670836695dfb96c 100644 (file)
--- 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
index c0a63b890da5d8f403e141d50156ffad3c84cdc2..dcdae3e8deb31b8a553d1d0e22344f4647c72a6e 100644 (file)
@@ -1 +1 @@
-30891c6b8ebe9dfc939f9695bb45a159fbaaf262
\ No newline at end of file
+e2b0ebe21cd8a63927decb645efd2db80bf88379
\ No newline at end of file
index 96e7ffb4b24fb00f1ee11e4169ebbc7f45f268f4..3a9ee3311a69ca414bda1eafd6a7b3c0bf4fd6d7 100644 (file)
@@ -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]