[Piglit] [PATCH] arb_sample_shading: Set run_concurrent for tests, get rid of extra -auto
Chris Forbes
chrisf at ijw.co.nz
Fri Oct 17 23:07:59 PDT 2014
Signed-off-by: Chris Forbes <chrisf at ijw.co.nz>
---
tests/all.py | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/tests/all.py b/tests/all.py
index 65ffcd7..f06b92b 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -1990,23 +1990,23 @@ arb_sampler_objects['framebufferblit'] = PiglitGLTest('arb_sampler_objects-frame
# Group ARB_sample_shading
arb_sample_shading = {}
spec['ARB_sample_shading'] = arb_sample_shading
-add_plain_test(arb_sample_shading, 'arb_sample_shading-api')
+add_concurrent_test(arb_sample_shading, 'arb_sample_shading-api')
TEST_SAMPLE_COUNTS = (0,) + MSAA_SAMPLE_COUNTS
for num_samples in TEST_SAMPLE_COUNTS:
test_name = 'builtin-gl-num-samples {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
for num_samples in TEST_SAMPLE_COUNTS:
test_name = 'builtin-gl-sample-id {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
for num_samples in TEST_SAMPLE_COUNTS:
test_name = 'builtin-gl-sample-mask {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
for num_samples in (0,2,4,6,8):
test_name = 'builtin-gl-sample-mask-simple {0}'.format(num_samples)
@@ -2015,18 +2015,18 @@ for num_samples in (0,2,4,6,8):
for num_samples in TEST_SAMPLE_COUNTS:
test_name = 'builtin-gl-sample-position {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
for num_samples in MSAA_SAMPLE_COUNTS:
test_name = 'interpolate-at-sample-position {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
for num_samples in MSAA_SAMPLE_COUNTS:
test_name = 'ignore-centroid-qualifier {0}'.format(num_samples)
- executable = 'arb_sample_shading-{0} -auto'.format(test_name)
- arb_sample_shading[test_name] = PiglitGLTest(executable)
+ executable = 'arb_sample_shading-{0}'.format(test_name)
+ arb_sample_shading[test_name] = PiglitGLTest(executable, run_concurrent=True)
import_glsl_parser_tests(spec['ARB_sample_shading'],
os.path.join(testsDir, 'spec', 'arb_sample_shading'),
--
2.1.2
More information about the Piglit
mailing list