[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 08/12] sg-report-job-history: Show start time
Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- sg-report-job-history | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sg-report-job-history b/sg-report-job-history index 76cb146..bbb85fd 100755 --- a/sg-report-job-history +++ b/sg-report-job-history @@ -251,7 +251,8 @@ END print H "<html><head><title>$title</title></head><body>\n"; print H "<h1>$title</h1>\n"; print H "<table rules=all>"; - print H "<tr><th>flight</th><th>branch</th><th>failure</th>\n"; + print H "<tr><th>started</th><th>flight</th>", + "<th>branch</th><th>failure</th>\n"; print H "<th>", (join ", ", @hostvarcols), "</th>\n"; foreach my $c (@rev_grid_cols) { print H "<th>".encode_entities($c)."</th>\n"; @@ -264,6 +265,10 @@ END my $colour= "bgcolor=\"$r->{Colour}\""; my $altcolour= altcolour($alternate); print H "<tr $altcolour>"; + my $started = $r->{Flight}{started}; + print H "<td>"; + print H show_abs_time $started if $started; + print H "</td>\n"; my $flt= $r->{Flight}{flight}; $url= "$c{ReportHtmlPubBaseUrl}/$flt"; print H "<td><a href=\"$url\">$flt</a></td>\n"; -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |