summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-03-29 13:49:25 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-05-01 14:28:00 -0700
commita5aa017a4b3ef50681a95943d4859a2e11806cac (patch)
tree73b224dbfa259b67bc837ed2788536ccad53d9a1 /framework
parentba9aea35b1f8c9d65260e98fe4a62e02644a21c7 (diff)
framework/test: add a test class for built-in constants
This has the same problem as asmparser tests. Tested-by: Rafael Antognolli <rafael.antognolli@intel.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/test/piglit_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/framework/test/piglit_test.py b/framework/test/piglit_test.py
index c53c3e55e..0986ab024 100644
--- a/framework/test/piglit_test.py
+++ b/framework/test/piglit_test.py
@@ -203,3 +203,8 @@ class ASMParserTest(PiglitBaseTest):
def command(self):
command = super(ASMParserTest, self).command
return command + [os.path.join(ROOT_DIR, self.filename)]
+
+
+class BuiltInConstantsTest(PiglitBaseTest):
+
+ """Test class for handling built in constants tests."""