mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix typo in the previous check-in. Ensure that --status header lines do not
overflow and wrap. FossilOrigin-Name: 2eaea67495fd9961b7145d829789889bf1d8fa7a834d40d1be43e7c74c233bc2
This commit is contained in:
@ -421,7 +421,7 @@ proc display_job {jobdict {tm ""}} {
|
||||
if {$tm!=""} {
|
||||
set dtm [expr {$tm-$job(starttime)}]
|
||||
set dtm [format %8s [elapsetime $dtm]]
|
||||
} else{
|
||||
} else {
|
||||
set dtm [format %8s ""]
|
||||
}
|
||||
puts " $dfname $dtm"
|
||||
@ -474,10 +474,10 @@ proc show_status {db cls} {
|
||||
} else {
|
||||
set clreol ""
|
||||
}
|
||||
puts [format %-79s "Command line: \[testrunner.tcl$cmdline\]$clreol"]
|
||||
puts [format %-79s "Cores: $nJob max $S(running) active"]
|
||||
puts [format %-79s "Summary: [elapsetime $tm], $fin/$total tasks,\
|
||||
$ne errors, $nt tests"]
|
||||
puts [format %-79.79s "Command: \[testrunner.tcl$cmdline\]$clreol"]
|
||||
puts [format %-79.79s "Cores: $nJob max $S(running) active"]
|
||||
puts [format %-79.79s "Summary: [elapsetime $tm], $fin/$total tasks,\
|
||||
$ne errors, $nt tests"]
|
||||
|
||||
set srcdir [file dirname [file dirname $TRG(info_script)]]
|
||||
if {$S(running)>0} {
|
||||
|
Reference in New Issue
Block a user