summaryrefslogtreecommitdiff
path: root/tests/fbo/fbo-integer.c
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2011-04-29 17:56:29 +0200
committerMarek Olšák <maraeo@gmail.com>2011-04-29 18:08:10 +0200
commit73617fa907aa54dea538eccb6ac93ab02d7b34f9 (patch)
tree12a48006f39f40dd424aa2e51e41d26b0f867e8c /tests/fbo/fbo-integer.c
parent03cc90919422d995d24151e499c9f120404d50b0 (diff)
Rename PIGLIT_SUCCESS and PIGLIT_FAILURE to PIGLIT_PASS and PIGLIT_FAIL, resp.
Diffstat (limited to 'tests/fbo/fbo-integer.c')
-rw-r--r--tests/fbo/fbo-integer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fbo/fbo-integer.c b/tests/fbo/fbo-integer.c
index 44eaa9963..5ec59daca 100644
--- a/tests/fbo/fbo-integer.c
+++ b/tests/fbo/fbo-integer.c
@@ -382,9 +382,9 @@ piglit_display(void)
for (f = 0; f < NUM_FORMATS; f++) {
GLboolean pass = test_fbo(&Formats[f]);
if (!pass)
- return PIGLIT_FAILURE;
+ return PIGLIT_FAIL;
}
- return PIGLIT_SUCCESS;
+ return PIGLIT_PASS;
}