From 43070f2fd806de992b6095923a99ed5a9c3e3fc7 Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 6 May 2019 22:44:51 +0300 Subject: [PATCH] 0030696: Draw Harness, testgrid - specify encoding in HTML header --- src/DrawResources/TestCommands.tcl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/DrawResources/TestCommands.tcl b/src/DrawResources/TestCommands.tcl index 1669f17cf4..bd79782cb7 100644 --- a/src/DrawResources/TestCommands.tcl +++ b/src/DrawResources/TestCommands.tcl @@ -1612,7 +1612,8 @@ proc _log_html {file log {title {}}} { } # print header - puts $fd "$title

$title

" + puts $fd "" + puts $fd "$title

$title

" # add images if present; these should have either PNG, GIF, or JPG extension, # and start with name of the test script, with optional suffix separated @@ -1681,7 +1682,7 @@ proc _log_html_summary {logdir log totals regressions improvements skipped total } # write HRML header, including command to refresh log if still in progress - puts $fd "" + puts $fd "" puts $fd "Tests summary" if { $total_time == "" } { puts $fd "" @@ -2337,7 +2338,8 @@ proc _log_html_diff {file log dir1 dir2 highlight_percent} { } # print header - puts $fd "Diff $dir1 vs. $dir2" + puts $fd "" + puts $fd "Diff $dir1 vs. $dir2" puts $fd "

Comparison of test results:

" puts $fd "

Version A \[NEW\] - $dir1

" puts $fd "

Version B \[REF\] - $dir2

" -- 2.20.1