summaryrefslogtreecommitdiff
path: root/tests/all.py
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2016-01-15 17:52:21 -0500
committerNicolai Hähnle <nicolai.haehnle@amd.com>2016-01-15 17:52:21 -0500
commitb2291791ffdc32b4be93cd3c4afd733953e34e55 (patch)
tree0b8702fd9879356b7f83c71d9f2e399300249cf6 /tests/all.py
parent0538e9c1355e7b009d68c0538c59e67eafa09f59 (diff)
arb_invalidate_subdata: add test for glInvalidateBuffer(Sub)Data
Since no-op is a valid implementation, this only checks the error conditions. Mesa currently fails this, I have a patch in the pipeline. Signed-off-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Diffstat (limited to 'tests/all.py')
-rw-r--r--tests/all.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py
index 0a97d26c1..3184b6e29 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4601,5 +4601,11 @@ with profile.group_manager(
g(['object-namespace-pollution', operation, object_type],
'{} with {}'.format(object_type, operation))
+# Group ARB_invalidate_subdata
+with profile.group_manager(
+ PiglitGLTest,
+ grouptools.join('spec', 'ARB_invalidate_subdata')) as g:
+ g(['arb_invalidate_subdata-buffer'], 'buffer')
+
if platform.system() is 'Windows':
profile.filter_tests(lambda p, _: not p.startswith('glx'))