diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-03-29 13:49:25 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-05-01 14:28:00 -0700 |
commit | a5aa017a4b3ef50681a95943d4859a2e11806cac (patch) | |
tree | 73b224dbfa259b67bc837ed2788536ccad53d9a1 /framework | |
parent | ba9aea35b1f8c9d65260e98fe4a62e02644a21c7 (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.py | 5 |
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.""" |