[Piglit] [PATCH 05/24] all.py: change add_single_param_test_set() to use a list for args

Dylan Baker baker.dylan.c at gmail.com
Mon Jan 5 13:50:26 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 e04c625..b2c8ce9 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -29,7 +29,7 @@ generatedTestDir = os.path.normpath(os.path.join(
 
 def add_single_param_test_set(group, name, *params):
     for param in params:
-        group[name + '-' + param] = PiglitGLTest(name + ' ' + param)
+        group[name + '-' + param] = PiglitGLTest([name, param])
 
 def add_plain_test(group, args, **kwargs):
     for a in args:
-- 
2.2.1



More information about the Piglit mailing list