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

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


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

diff --git a/tests/all.py b/tests/all.py
index 9ee6c16..6a0fdfe 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -103,11 +103,11 @@ def add_fbo_depthstencil_msaa_visual_tests(group, format):
 def add_depthstencil_render_miplevels_tests(group, test_types):
     # Note: the buffer sizes below have been chosen to exercise
     # many possible combinations of buffer alignments on i965.
-    for texture_size in (146, 273, 292, 585, 1024):
+    for texture_size in ['146', '273', '292', '585', '1024']:
         for test_type in test_types:
-            test_name = 'depthstencil-render-miplevels {0} {1}'.format(
-                    texture_size, test_type)
-            add_concurrent_test(group, test_name)
+            add_concurrent_test(
+                group,
+                ['depthstencil-render-miplevels', texture_size, test_type])
 
 def add_msaa_visual_plain_tests(group, args, **kwargs):
     add_plain_test(group, args)
-- 
2.2.1



More information about the Piglit mailing list