[Piglit] [PATCH 4/6] tests/opengl.py: fix ext_shader_samples_indentical tests

Dylan Baker dylan at pnwbakers.com
Mon Jun 25 23:24:45 UTC 2018


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.
---
 tests/opengl.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/opengl.py b/tests/opengl.py
index e12f84e27..8556c9f22 100644
--- a/tests/opengl.py
+++ b/tests/opengl.py
@@ -4746,8 +4746,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(
-- 
2.17.1



More information about the Piglit mailing list