summaryrefslogtreecommitdiff
path: root/tests/all.py
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2016-01-05 15:28:53 -0800
committerIan Romanick <ian.d.romanick@intel.com>2016-01-12 09:49:26 -0800
commit5f954c14e50ae2061d1189623bca67ec99f48857 (patch)
treed266e1b9d18eca6387dafcfb25c806290437af4b /tests/all.py
parent0e427fceb00a9d4cec6ad6f001276136076559a6 (diff)
namespace-pollution: Add vertex program as an object to test
NOTE: The following tests fail on i965 (and presumably other drivers that use meta) on Mesa master and 11.1: program with gldrawpixels v2: See v6 comment in first namespace-pollution commit. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92363 Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'tests/all.py')
-rw-r--r--tests/all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/all.py b/tests/all.py
index 8b80aabe3..d214b69a0 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4595,7 +4595,7 @@ with profile.group_manager(
with profile.group_manager(
PiglitGLTest,
grouptools.join('object namespace pollution')) as g:
- for object_type in ("buffer", "framebuffer", "renderbuffer", "texture"):
+ for object_type in ("buffer", "framebuffer", "program", "renderbuffer", "texture"):
for operation in ("glBitmap", "glBlitFramebuffer", "glClear", "glClearTexSubImage", "glCopyImageSubData", "glCopyPixels", "glCopyTexSubImage2D", "glDrawPixels", "glGenerateMipmap", "glGetTexImage", "glGetTexImage-compressed", "glTexSubImage2D"):
g(['object-namespace-pollution', operation, object_type],
'{} with {}'.format(object_type, operation))