summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNeil Roberts <nroberts@igalia.com>2018-11-08 01:37:51 +0100
committerNeil Roberts <nroberts@igalia.com>2018-11-09 09:18:28 +0100
commit65dc811aaffc09308440e0950b8b04b990afe122 (patch)
tree0e4af872b5546f9f91402da29ab53061d213debf /framework
parent81c1cb497d9489e560b8c607300ab7c26e9332b9 (diff)
framework: Add support for serializing VkRunner tests
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/profile.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/profile.py b/framework/profile.py
index 44c3fbd9f..1a0a91c24 100644
--- a/framework/profile.py
+++ b/framework/profile.py
@@ -53,7 +53,7 @@ from framework.monitoring import Monitoring
from framework.test.base import Test, DummyTest
from framework.test.piglit_test import (
PiglitCLTest, PiglitGLTest, ASMParserTest, BuiltInConstantsTest,
- CLProgramTester, ROOT_DIR,
+ CLProgramTester, VkRunnerTest, ROOT_DIR,
)
from framework.test.shader_test import ShaderTest, MultiShaderTest
from framework.test.glsl_parser_test import GLSLParserTest
@@ -332,6 +332,8 @@ def make_test(element):
return GLSLParserTest(**options)
if type_ == 'asm_parser':
return ASMParserTest(**options)
+ if type_ == 'vkrunner':
+ return VkRunnerTest(**options)
if type_ == 'multi_shader':
options['skips'] = []
for e in element.findall('./Skips/Skip/option'):