[Piglit] [PATCH] tests/all.py: use list for vpfp-generic command line arguments
Brian Paul
brianp at vmware.com
Wed Dec 17 09:46:27 PST 2014
As with the previous patch, fixes patch corruption on Cygwin.
---
tests/all.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/all.py b/tests/all.py
index e518222..2ffb920 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -501,8 +501,8 @@ for subtest in ('interstage', 'intrastage', 'vs-gs'):
shaders[cmdline] = PiglitGLTest(cmdline, run_concurrent=True)
def add_vpfpgeneric(group, name):
- group[name] = PiglitGLTest('vpfp-generic ' +
- os.path.join(testsDir, 'shaders', 'generic', name + '.vpfp'),
+ group[name] = PiglitGLTest(['vpfp-generic',
+ os.path.join(testsDir, 'shaders', 'generic', name + '.vpfp')],
run_concurrent=True)
glx = {}
--
1.9.1
More information about the Piglit
mailing list