From: José Fonseca <[email protected]>

Jenkins doesn't make a huge distinction between failures and errors though.
---
 framework/programs/summary.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/framework/programs/summary.py b/framework/programs/summary.py
index 28fcffb..da4e040 100644
--- a/framework/programs/summary.py
+++ b/framework/programs/summary.py
@@ -160,6 +160,8 @@ class _Writer:
                 pass
             elif success == status.SKIP:
                 self.report.addSkipped()
+            elif success == status.CRASH:
+                self.report.addError(success.name)
             else:
                 self.report.addFailure(success.name)
 
-- 
1.9.1

_______________________________________________
Piglit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to