From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 5/6] sg-report-flight: Add some flight information Date: Mon, 7 Apr 2014 17:27:56 +0100 Message-ID: <1396888077-9619-6-git-send-email-ian.jackson@eu.citrix.com> References: <1396888077-9619-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WXCP1-0007pq-Ef for xen-devel@lists.xenproject.org; Mon, 07 Apr 2014 16:28:07 +0000 In-Reply-To: <1396888077-9619-1-git-send-email-ian.jackson@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org Signed-off-by: Ian Jackson --- sg-report-flight | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/sg-report-flight b/sg-report-flight index 0bf2b5d..b643816 100755 --- a/sg-report-flight +++ b/sg-report-flight @@ -994,7 +994,7 @@ END } my @vercols= sort keys %vercols; if (@vercols) { - print H "

targeted versions

\n"; + print H "

Targeted versions

\n"; print H ""; print H ""; print H "" foreach @vercols; @@ -1012,6 +1012,31 @@ END } print H "
".encode_entities($_)."
"; } + my $started_str = show_abs_time $fi->{FlightInfo}{started}; + + print H <Flight information + + + + + + + +
"Branch":$fi->{FlightInfo}{branch}
Intended blessing:$fi->{FlightInfo}{intended}
Blessing:$fi->{FlightInfo}{blessing}
Started:$started_str
Test harness revision(s): +END + + our $htmlout_touchedq ||= $dbh_tests->prepare(<execute($fi->{Flight}); + while (my ($touched) = $htmlout_touchedq->fetchrow_array()) { + print H $touched, "\n"; + } + + print H <
+END print H ""; H->error and die $!; close H or die $!; -- 1.7.10.4