[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH v3 05/25] step status skip: Ignore in report_run_getinfo
From: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> report_run_getinfo is trying to generate some HTML to describe a job's (current) status. It sometimes looks at the steps to find `interesting' information to report. Completely ignore steps with status `skip' for this purpose, just like we ignore ones with status `pass'. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- Osstest/Executive.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index 7b40307..69f0319 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -312,6 +312,7 @@ sub report_run_getinfo ($) { SELECT * FROM steps WHERE flight=? AND job=? AND status!='pass' + AND status!='skip' ORDER BY stepno END $failstepq->execute($f->{flight}, $f->{job}); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |