summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-06-25 11:59:03 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-06-26 08:43:06 -0700
commit3e76687ae8ecc8878aaa2768e5df2cc9c485ac58 (patch)
tree10d5deccf6023d3db7b1d9377e3a872bda157a5a
parent3c60ac8eecea9ea63223c0ef4cc407a055aa8066 (diff)
tests/opengl.py: fix ext_shader_samples_indentical tests
These are all wrong, the last line does nothing since there aren't enough arguments and always skips, the loop doesn't work since it points at a non-existent binary. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--tests/opengl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/opengl.py b/tests/opengl.py
index fd7c667a1..ced0adacb 100644
--- a/tests/opengl.py
+++ b/tests/opengl.py
@@ -4748,8 +4748,7 @@ with profile.test_list.group_manager(
PiglitGLTest,
grouptools.join('spec', 'EXT_shader_samples_identical')) as g:
for sample_count in MSAA_SAMPLE_COUNTS:
- g(['ext_shader_samples_identical', sample_count])
- g(['ext_shader_samples_identical-simple-fs'], 'simple-fs')
+ g(['ext_shader_samples_identical-simple-fs', sample_count])
# Group ARB_shader_draw_parameters
with profile.test_list.group_manager(