[Piglit] [PATCH 1/9] all.py put GL 1.1 tests after GL 1.0 tests

Brian Paul brianp at vmware.com
Fri Oct 13 20:07:59 UTC 2017


Trivial clean-up.
---
 tests/all.py | 74 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 37 insertions(+), 37 deletions(-)

diff --git a/tests/all.py b/tests/all.py
index a450e42..168dd85 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -898,6 +898,43 @@ with profile.test_list.group_manager(
 
 with profile.test_list.group_manager(
         PiglitGLTest,
+        grouptools.join('spec', '!opengl 1.0')) as g:
+    g(['gl-1.0-beginend-coverage'])
+    g(['gl-1.0-dlist-beginend'])
+    g(['gl-1.0-dlist-bitmap'])
+    g(['gl-1.0-dlist-shademodel'])
+    g(['gl-1.0-drawpixels-color-index'])
+    g(['gl-1.0-edgeflag'])
+    g(['gl-1.0-edgeflag-const'])
+    g(['gl-1.0-edgeflag-quads'])
+    g(['gl-1.0-long-dlist'])
+    g(['gl-1.0-readpixels-oob'])
+    g(['gl-1.0-rendermode-feedback'])
+    g(['gl-1.0-front-invalidate-back'], run_concurrent=False)
+    g(['gl-1.0-swapbuffers-behavior'], run_concurrent=False)
+    g(['gl-1.0-polygon-line-aa'])
+    g(['gl-1.0-push-no-attribs'])
+    g(['gl-1.0-blend-func'])
+    g(['gl-1.0-fpexceptions'])
+    g(['gl-1.0-ortho-pos'])
+    g(['gl-1.0-rastercolor'])
+    g(['gl-1.0-readpixsanity'])
+    g(['gl-1.0-logicop'])
+    g(['gl-1.0-no-op-paths'])
+    g(['gl-1.0-simple-readbuffer'])
+    g(['gl-1.0-spot-light'])
+    g(['gl-1.0-scissor-bitmap'])
+    g(['gl-1.0-scissor-clear'])
+    g(['gl-1.0-scissor-copypixels'])
+    g(['gl-1.0-scissor-depth-clear'])
+    g(['gl-1.0-scissor-depth-clear-negative-xy'])
+    g(['gl-1.0-scissor-many'])
+    g(['gl-1.0-scissor-offscreen'])
+    g(['gl-1.0-scissor-polygon'])
+    g(['gl-1.0-scissor-stencil-clear'])
+
+with profile.test_list.group_manager(
+        PiglitGLTest,
         grouptools.join('spec', '!opengl 1.1')) as g:
     # putting slower tests first
     g(['streaming-texture-leak'])
@@ -1031,43 +1068,6 @@ with profile.test_list.group_manager(
 
 with profile.test_list.group_manager(
         PiglitGLTest,
-        grouptools.join('spec', '!opengl 1.0')) as g:
-    g(['gl-1.0-beginend-coverage'])
-    g(['gl-1.0-dlist-beginend'])
-    g(['gl-1.0-dlist-bitmap'])
-    g(['gl-1.0-dlist-shademodel'])
-    g(['gl-1.0-drawpixels-color-index'])
-    g(['gl-1.0-edgeflag'])
-    g(['gl-1.0-edgeflag-const'])
-    g(['gl-1.0-edgeflag-quads'])
-    g(['gl-1.0-long-dlist'])
-    g(['gl-1.0-readpixels-oob'])
-    g(['gl-1.0-rendermode-feedback'])
-    g(['gl-1.0-front-invalidate-back'], run_concurrent=False)
-    g(['gl-1.0-swapbuffers-behavior'], run_concurrent=False)
-    g(['gl-1.0-polygon-line-aa'])
-    g(['gl-1.0-push-no-attribs'])
-    g(['gl-1.0-blend-func'])
-    g(['gl-1.0-fpexceptions'])
-    g(['gl-1.0-ortho-pos'])
-    g(['gl-1.0-rastercolor'])
-    g(['gl-1.0-readpixsanity'])
-    g(['gl-1.0-logicop'])
-    g(['gl-1.0-no-op-paths'])
-    g(['gl-1.0-simple-readbuffer'])
-    g(['gl-1.0-spot-light'])
-    g(['gl-1.0-scissor-bitmap'])
-    g(['gl-1.0-scissor-clear'])
-    g(['gl-1.0-scissor-copypixels'])
-    g(['gl-1.0-scissor-depth-clear'])
-    g(['gl-1.0-scissor-depth-clear-negative-xy'])
-    g(['gl-1.0-scissor-many'])
-    g(['gl-1.0-scissor-offscreen'])
-    g(['gl-1.0-scissor-polygon'])
-    g(['gl-1.0-scissor-stencil-clear'])
-
-with profile.test_list.group_manager(
-        PiglitGLTest,
         grouptools.join('spec', '!opengl 1.2')) as g:
     g(['crash-texparameter-before-teximage'])
     g(['draw-elements-vs-inputs'])
-- 
1.9.1



More information about the Piglit mailing list