[Piglit] [PATCH] tests/all.py: use list for vpfp-generic command line arguments

2014-12-17 Thread Brian Paul
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

___
Piglit mailing list
Piglit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/piglit


Re: [Piglit] [PATCH] tests/all.py: use list for vpfp-generic command line arguments

2014-12-17 Thread Dylan Baker
Reviewed-by: Dylan Baker dylanx.c.ba...@intel.com

On Wednesday, December 17, 2014 10:46:27 AM Brian Paul wrote:
 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
 
 ___
 Piglit mailing list
 Piglit@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/piglit
 


signature.asc
Description: This is a digitally signed message part.
___
Piglit mailing list
Piglit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/piglit