diff options
Diffstat (limited to 'framework/profile.py')
-rw-r--r-- | framework/profile.py | 4 |
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'): |