diff options
author | Chad Versace <chad.versace@intel.com> | 2011-02-10 13:35:48 -0800 |
---|---|---|
committer | Chad Versace <chad.versace@intel.com> | 2011-02-10 13:38:24 -0800 |
commit | 3d5b8b339e4da3355b99555fa455af8afb8750f9 (patch) | |
tree | 680ca5449a5019822263c556f53fc7b442230baf /framework | |
parent | 59a63ce811db7fe69d3ba215109856a254b4ef77 (diff) |
glsl_parser_test: Add test instances to thread pool 'gpu-not-used'
Diffstat (limited to 'framework')
-rwxr-xr-x | framework/glsl_parser_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/glsl_parser_test.py b/framework/glsl_parser_test.py index d5fdd5ea..3ecdf4cb 100755 --- a/framework/glsl_parser_test.py +++ b/framework/glsl_parser_test.py @@ -185,11 +185,11 @@ class GLSLParserTest(PlainExecTest): 'require_extensions' : '', } - def __init__(self, filepath): + def __init__(self, filepath, poolName='gpu-not-used'): """ :filepath: Must end in one '.vert', '.geom', or '.frag'. """ - Test.__init__(self) + Test.__init__(self, poolName) self.__config = None self.__command = None self.__filepath = filepath |