[Piglit] [PATCH 04/15] framework: add support for parsing subtest enumeration

Dylan Baker dylan at pnwbakers.com
Tue Jan 23 01:22:05 UTC 2018


This adds support for enumerating subtests to the python layer. When it
sees this it sets each subtest to notrun. This allows the python
framework to report that tests didn't run when they were expected to.

Signed-off-by: Dylan Baker <dylan.c.baker at intel.com>
---
 framework/test/piglit_test.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/framework/test/piglit_test.py b/framework/test/piglit_test.py
index 491f3d3..950a762 100644
--- a/framework/test/piglit_test.py
+++ b/framework/test/piglit_test.py
@@ -34,6 +34,7 @@ except ImportError:
     import json
 
 from framework import core, options
+from framework import status
 from .base import Test, WindowResizeMixin, ValgrindMixin, TestIsSkip
 
 
@@ -73,7 +74,12 @@ class PiglitBaseTest(ValgrindMixin, Test):
 
         for each in self.result.out.split('\n'):
             if each.startswith('PIGLIT:'):
-                self.result.update(json.loads(each[8:]))
+                deserial = json.loads(each[8:])
+                if 'enumerate subtests' in deserial:
+                    for n in deserial['enumerate subtests']:
+                        self.result.subtests[n] = status.NOTRUN
+                else:
+                    self.result.update(deserial)
             else:
                 out.append(each)
 
-- 
git-series 0.9.1


More information about the Piglit mailing list