Add the number of cores used and the name of the host computer to the

summary at the end of releasetest.tcl.

FossilOrigin-Name: cd3ae0f14c6b28b328b208431d0effcb7b062ec6
This commit is contained in:
drh 2016-01-03 11:17:04 +00:00
parent 9abe841e9e
commit 573d88e8ed
3 changed files with 11 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Fix\sa\s(harmless)\stypo\sin\san\s#ifdef\sfor\sSQLITE_ENABLE_CURSOR_HINTS C Add\sthe\snumber\sof\scores\sused\sand\sthe\sname\sof\sthe\shost\scomputer\sto\sthe\nsummary\sat\sthe\send\sof\sreleasetest.tcl.
D 2016-01-02T05:00:31.568 D 2016-01-03T11:17:04.115
F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc 5fff077fcc46de7714ed6eebb6159a4c00eab751 F Makefile.msc 5fff077fcc46de7714ed6eebb6159a4c00eab751
@ -947,7 +947,7 @@ F test/rbu.test 168573d353cd0fd10196b87b0caa322c144ef736
F test/rdonly.test 64e2696c322e3538df0b1ed624e21f9a23ed9ff8 F test/rdonly.test 64e2696c322e3538df0b1ed624e21f9a23ed9ff8
F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8 F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8
F test/reindex.test 44edd3966b474468b823d481eafef0c305022254 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254
F test/releasetest.tcl 622f2381b217facdf429584a5c292cc1fc47e7c0 F test/releasetest.tcl f84ff16fef79ee5d328eee7c48da084a775d101c
F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb
F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea
F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14
@ -1406,7 +1406,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 3e852804c85a5c9f4c4ffafd55d03af6d19fe5cc P 2047d2deabf2021ea05d620c3dd4919448027b11
R 5906d6b78129d8858a23ea4c57fad965 R ea21a9ede315d15a7b1dfcf0bcd428e9
U drh U drh
Z 4843af3fcc8c5413e769bb1983160a44 Z a5cb2210a915d9603f738ab23bc99890

View File

@ -1 +1 @@
2047d2deabf2021ea05d620c3dd4919448027b11 cd3ae0f14c6b28b328b208431d0effcb7b062ec6

View File

@ -830,8 +830,8 @@ proc process_options {argv} {
} }
default { default {
PUTSERR stderr "" PUTSERR ""
PUTSERR stderr [string trim $::USAGE_MESSAGE] PUTSERR [string trim $::USAGE_MESSAGE]
exit -1 exit -1
} }
} }
@ -945,6 +945,8 @@ proc main {argv} {
set min [expr {($elapsetime/60)%60}] set min [expr {($elapsetime/60)%60}]
set sec [expr {$elapsetime%60}] set sec [expr {$elapsetime%60}]
set etime [format (%02d:%02d:%02d) $hr $min $sec] set etime [format (%02d:%02d:%02d) $hr $min $sec]
if {$::JOBS>1} {append etime " $::JOBS cores"}
if {[catch {exec hostname} HNAME]==0} {append etime " on $HNAME"}
PUTS [string repeat * 79] PUTS [string repeat * 79]
incr ::NERRCASE $::NERR incr ::NERRCASE $::NERR
PUTS "$::NERRCASE failures out of $::NTESTCASE tests in $etime" PUTS "$::NERRCASE failures out of $::NTESTCASE tests in $etime"