From: Ian Jackson <ian.jack...@eu.citrix.com>

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.jack...@eu.citrix.com>
---
 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@lists.xen.org
https://lists.xen.org/xen-devel

Reply via email to