[Piglit] [PATCH v2] arb_get_program_binary/retrievable_hint: fix typo

Haixia Shi hshi at chromium.org
Thu Apr 14 20:34:21 UTC 2016


The function GLboolean piglit_check_gl_error() returns GL_TRUE when there is
no error, and GL_FALSE when there is an error.

Signed-off-by: Haixia Shi <hshi at chromium.org>
Cc: Dylan Baker <baker.dylan.c at gmail.com>
Cc: Ian Romanick <idr at freedesktop.org>
---
 tests/spec/arb_get_program_binary/retrievable_hint.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/spec/arb_get_program_binary/retrievable_hint.c b/tests/spec/arb_get_program_binary/retrievable_hint.c
index 8283c5b..9263a89 100644
--- a/tests/spec/arb_get_program_binary/retrievable_hint.c
+++ b/tests/spec/arb_get_program_binary/retrievable_hint.c
@@ -79,7 +79,7 @@ piglit_init(int argc, char **argv)
 	 */
 	value = 0xDEADBEEF;
 	glGetProgramiv(prog, GL_PROGRAM_BINARY_RETRIEVABLE_HINT, &value);
-	got_error = piglit_check_gl_error(0);
+	got_error = !piglit_check_gl_error(0);
 
 	if (!got_error) {
 		if (value == 0xDEADBEEF) {
-- 
2.8.0.rc3.226.g39d4020



More information about the Piglit mailing list