[Piglit] [PATCH 13/24] all.py: change texwrap_target to return list

Dylan Baker baker.dylan.c at gmail.com
Mon Jan 5 13:50:34 PST 2015


Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 tests/all.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/all.py b/tests/all.py
index 842e8e2..e330290 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -652,7 +652,7 @@ glx['GLX_MESA_query_renderer'] = mesa_query_renderer
 mesa_query_renderer['coverage'] = PiglitGLTest('glx-query-renderer-coverage', run_concurrent=True, require_platforms=['glx', 'mixed_glx_egl'])
 
 def texwrap_test(args):
-    return PiglitGLTest('texwrap ' + ' '.join(args), run_concurrent=True)
+    return PiglitGLTest(['texwrap'] + args, run_concurrent=True)
 
 def add_texwrap_target_tests(group, target):
     group['texwrap ' + target] = texwrap_test([target, 'GL_RGBA8'])
-- 
2.2.1



More information about the Piglit mailing list