From: Anthony Pesch <ape...@nvidia.com>

Change expected error from INVALID_OPERATION to INVALID_VALUE when querying
a level which hasn't been explicitly defined. This is a valid operation, the
error set should be due to the requested width and height being greater than
the default width and height of zero.
---
 tests/spec/arb_get_texture_sub_image/errors.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/spec/arb_get_texture_sub_image/errors.c 
b/tests/spec/arb_get_texture_sub_image/errors.c
index 34fec4a95..57875fa6a 100644
--- a/tests/spec/arb_get_texture_sub_image/errors.c
+++ b/tests/spec/arb_get_texture_sub_image/errors.c
@@ -200,7 +200,7 @@ test_invalid_values(void)
                             8, 8, 1, /* size */
                             GL_RGBA, GL_FLOAT,  /* bad enum */
                             sizeof(buffer), buffer);
-       if (!piglit_check_gl_error(GL_INVALID_OPERATION))
+       if (!piglit_check_gl_error(GL_INVALID_VALUE))
                pass = false;
 
        /* Test getting invalid offset */
-- 
2.13.6

_______________________________________________
Piglit mailing list
Piglit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to