mirror of
https://github.com/reactos/web.git
synced 2025-04-03 05:21:45 +00:00
[TESTMAN] Add comment to the comparison page
This commit is contained in:
parent
32eff17852
commit
6d3448daf3
@ -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>';
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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 " .
|
||||
|
Loading…
x
Reference in New Issue
Block a user