[Piglit] [PATCH 10/24] all.py: change add_msaa_formats_tests to use list for args

Dylan Baker baker.dylan.c at gmail.com
Mon Jan 5 13:50:31 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 7a66d60..f437577 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -361,7 +361,7 @@ def add_msaa_formats_tests(group, extension):
         args = [str(num_samples), extension]
         test_name = ' '.join(['multisample-formats'] + args)
         group[test_name] = PiglitGLTest(
-                'ext_framebuffer_multisample-formats ' + ' '.join(args),
+                ['ext_framebuffer_multisample-formats'] + args,
                 run_concurrent=True)
 
 def add_fbo_generatemipmap_extension(group, extension, name):
-- 
2.2.1



More information about the Piglit mailing list