1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +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:
drh
2024-08-27 19:48:19 +00:00
parent db05c66a16
commit 1a7cfbebb0
4 changed files with 14 additions and 13 deletions

View File

@@ -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} {

View File

@@ -115,6 +115,7 @@ namespace eval trd {
}
set build(Stdcall) {
-DUSE_STDCALL=1
-DSQLITE_USE_ONLY_WIN32=1
-O2
}