From: Ian Jackson Date: Wed, 17 Jun 2015 16:35:50 +0000 (+0100) Subject: sg-report-host-history: Show "running" jobs as "incomplete" X-Git-Tag: wip.libvirt-v3-base~122 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=003512338b659e29524c85f799c9f13a1c712f89;p=people%2Fliuw%2Fosstest.git sg-report-host-history: Show "running" jobs as "incomplete" Since they may in fact be abandoned. Signed-off-by: Ian Jackson --- diff --git a/sg-report-host-history b/sg-report-host-history index cd9ec61..ad9f248 100755 --- a/sg-report-host-history +++ b/sg-report-host-history @@ -218,7 +218,7 @@ END print H "", (show_abs_time $ar->{finished}), ""; } elsif ($ar->{status} eq 'running') { print H "$ar->{testid}"; - print H "$ar->{status}"; + print H "(incomplete)"; } else { print H "$ar->{testid}"; print H "$ar->{status}";