[Piglit] [Patch v2 05/18] gleantest.py: Fix formatting problems

Dylan Baker baker.dylan.c at gmail.com
Mon Jul 28 15:35:14 PDT 2014


Signed-off-by: Dylan Baker <baker.dylan.c at gmail.com>
---
 framework/gleantest.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/framework/gleantest.py b/framework/gleantest.py
index 5229cf5..9932ab0 100644
--- a/framework/gleantest.py
+++ b/framework/gleantest.py
@@ -27,13 +27,15 @@ from .exectest import Test, TEST_BIN_DIR
 
 glean_executable = os.path.join(TEST_BIN_DIR, "glean")
 
+
 # GleanTest: Execute a sub-test of Glean
 class GleanTest(Test):
     globalParams = []
 
     def __init__(self, name, **kwargs):
-        super(GleanTest, self).__init__([glean_executable, "-o", "-v", "-v",
-                                       "-v", "-t", "+" + name])
+        super(GleanTest, self).__init__(
+            [glean_executable, "-o", "-v", "-v", "-v", "-t", "+" + name],
+            **kwargs)
 
     @Test.command.getter
     def command(self):
-- 
2.0.2



More information about the Piglit mailing list