In the releasetest.tcl script, show the test target for each configuration
that is run. And show the time in HH:MM:SS. FossilOrigin-Name: 2295e9e0a22220ccb1b9cc2b031c1d8e702a1888
This commit is contained in:
parent
069b8f2cb3
commit
e43ff920ce
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
||||
C Add\sthe\sthreadtest\starget\sto\sMakefile.in.\s\sAdd\s--enable-load-extension\sto\nthe\sconfigure\sissued\sby\sreleasetest.tcl.
|
||||
D 2014-12-23T20:31:43.428
|
||||
C In\sthe\sreleasetest.tcl\sscript,\sshow\sthe\stest\starget\sfor\seach\sconfiguration\nthat\sis\srun.\s\sAnd\sshow\sthe\stime\sin\sHH:MM:SS.
|
||||
D 2014-12-23T20:41:13.506
|
||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||
F Makefile.in c5bad35715abe0ffcb6a11fbafb157de7405d51a
|
||||
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 8563ba7df4b8cb9a9ee9ccd042f14f0553e62f63
|
||||
F test/releasetest.tcl 84b224e46e8d31c26591518ff91daf88c602decb
|
||||
F test/resolver01.test 33abf37ff8335e6bf98f2b45a0af3e06996ccd9a
|
||||
F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea
|
||||
F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14
|
||||
@ -1233,7 +1233,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 af166c5c64216d845269410d1ac2493310694b86
|
||||
R 84b62c16990cff93a3eab955a0ae7d8d
|
||||
P cb128067faabf0503dff1298ed29934f484f71bb
|
||||
R e47d011ee548c05856b81e40855ed9d3
|
||||
U drh
|
||||
Z 40c138478ca76e8e420aceec7c5661be
|
||||
Z 930cf73b25702ad0596e5aa07bf5b1dd
|
||||
|
@ -1 +1 @@
|
||||
cb128067faabf0503dff1298ed29934f484f71bb
|
||||
2295e9e0a22220ccb1b9cc2b031c1d8e702a1888
|
@ -233,8 +233,9 @@ proc run_test_suite {name testtarget config} {
|
||||
|
||||
dryrun file mkdir $dir
|
||||
if {!$::DRYRUN} {
|
||||
set n [string length $name]
|
||||
puts -nonewline "${name}[string repeat . [expr {40-$n}]]"
|
||||
set title ${name}($testtarget)
|
||||
set n [string length $title]
|
||||
puts -nonewline "${title}[string repeat . [expr {54-$n}]]"
|
||||
flush stdout
|
||||
}
|
||||
|
||||
@ -249,9 +250,10 @@ proc run_test_suite {name testtarget config} {
|
||||
dryrun cd $origdir
|
||||
|
||||
if {!$::DRYRUN} {
|
||||
set minutes [expr {($tm2-$tm1)/60}]
|
||||
set hours [expr {($tm2-$tm2)/3600}]
|
||||
set minutes [expr {(($tm2-$tm1)/60)%60}]
|
||||
set seconds [expr {($tm2-$tm1)%60}]
|
||||
set tm [format (%02d:%02d) $minutes $seconds]
|
||||
set tm [format (%02d:%02d:%02d) $hours $minutes $seconds]
|
||||
if {$rc} {
|
||||
puts " FAIL $tm"
|
||||
incr ::NERR
|
||||
|
Loading…
Reference in New Issue
Block a user