[TESTMAN] Add comment to the comparison page

This commit is contained in:
Mark Jansen 2023-01-31 00:42:38 +01:00 committed by Colin Finck
parent 32eff17852
commit 6d3448daf3
5 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@
$indicator = new Indicator($row["id"]);
$table_summary .= '<th>';
$table_summary .= sprintf($testman_langres["resulthead"], $gi->getShortHash($row["revision"]), GetDateString($row["timestamp"]), $row["name"], GetPlatformString($row["platform"]));
$table_summary .= sprintf($testman_langres["resulthead"], $gi->getShortHash($row["revision"]), htmlspecialchars($row["comment"]), GetDateString($row["timestamp"]), $row["name"], GetPlatformString($row["platform"]));
$table_summary .= '</th>';
$table_totals .= '<td>';

View File

@ -59,7 +59,7 @@
"difference" => "Unterschied zum vorherigen Ergebnis",
"testsuite" => "Test Suite",
"resulthead" => "Revision %d<br />am %s<br />von %s<br />unter %s",
"resulthead" => "Revision %d (%s)<br />am %s<br />von %s<br />unter %s",
"totals" => "Gesamtzahlen",
"blacklisted" => "blacklisted",

View File

@ -48,7 +48,7 @@
"difference" => "Difference to the previous result",
"testsuite" => "Test Suite",
"resulthead" => "Revision %s<br />at %s<br />by %s<br />under %s",
"resulthead" => "Revision %s (%s)<br />at %s<br />by %s<br />under %s",
"totals" => "Totals",
"blacklisted" => "blacklisted",

View File

@ -61,7 +61,7 @@
"difference" => "Różnica względem poprzedniego wyniku",
"testsuite" => "Zestaw testów",
"resulthead" => "Rewizja %d<br />dnia %s<br />przez %s<br /> na %s",
"resulthead" => "Rewizja %d (%s)<br />dnia %s<br />przez %s<br /> na %s",
"totals" => "Łącznie",
"blacklisted" => "blacklisted",

View File

@ -99,7 +99,7 @@
return $this->_dbh->query(
"SELECT UNIX_TIMESTAMP(r.timestamp) timestamp, src.name, r.revision, r.platform, r.count, r.failures, r.id, " .
" r.boot_cycles, r.context_switches, r.interrupts, r.reboots, r.system_calls, ROUND(r.time/60, 1) as time, ROUND(SUM(wr.time)/60,1) as testing_time " .
" r.boot_cycles, r.context_switches, r.interrupts, r.reboots, r.system_calls, ROUND(r.time/60, 1) as time, ROUND(SUM(wr.time)/60,1) as testing_time, r.comment " .
"FROM winetest_runs r " .
"JOIN sources src ON r.source_id = src.id " .
"JOIN winetest_results wr ON wr.test_id = r.id " .