[Piglit] [PATCH 5/6] tests/xts.py: call super in intpret_result()
baker.dylan.c at gmail.com
baker.dylan.c at gmail.com
Tue Oct 20 17:07:23 PDT 2015
From: Dylan Baker <baker.dylan.c at gmail.com>
Fix crash/warn handling.
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
tests/xts.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/xts.py b/tests/xts.py
index de560c4..a078056 100644
--- a/tests/xts.py
+++ b/tests/xts.py
@@ -160,6 +160,8 @@ class XTSTest(Test): # pylint: disable=too-few-public-methods
self.result.images = self._process_log_for_images(log)
+ super(XTSTest, self).interpret_result()
+
class RendercheckTest(Test):
def __init__(self, args):
@@ -174,6 +176,8 @@ class RendercheckTest(Test):
else:
self.result.result = 'fail'
+ super(RendercheckTest, self).interpret_result()
+
def _populate_profile_xts(profile):
fpath = os.path.join(X_TEST_SUITE, 'xts5')
--
2.6.1
More information about the Piglit
mailing list