summaryrefslogtreecommitdiff
path: root/tests/all.py
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2016-06-12 02:31:20 -0400
committerIlia Mirkin <imirkin@alum.mit.edu>2016-06-18 13:29:22 -0400
commit9712ecfc251f890721c75a6860ed537268d2046f (patch)
tree2553f7bda43f813a6bd71649623936be9c4a5f2c /tests/all.py
parent4a6f8217c94f59efbdaebad59b2d3b0adaa74bac (diff)
add GL_EXT_window_rectangles tests
Reviewed-by: Brian Paul <brianp@vmware.com> (v1) v1 -> v2: fix render test to actually work in GLES Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'tests/all.py')
-rw-r--r--tests/all.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py
index 5c6284d08..8af76a1bf 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4718,5 +4718,16 @@ with profile.group_manager(
grouptools.join('spec', 'ARB_invalidate_subdata')) as g:
g(['arb_invalidate_subdata-buffer'], 'buffer')
+# Group EXT_window_rectangles
+with profile.group_manager(
+ PiglitGLTest,
+ grouptools.join('spec', 'EXT_window_rectangles')) as g:
+ g(['ext_window_rectangles-dlist'], 'dlist')
+ g(['ext_window_rectangles-errors'], 'errors')
+ g(['ext_window_rectangles-render'], 'render')
+
+ g(['ext_window_rectangles-errors_gles3'], 'errors_gles3')
+ g(['ext_window_rectangles-render_gles3'], 'render_gles3')
+
if platform.system() is 'Windows':
profile.filter_tests(lambda p, _: not p.startswith('glx'))