diff options
author | Marek Olšák <maraeo@gmail.com> | 2011-04-29 17:56:29 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2011-04-29 18:08:10 +0200 |
commit | 73617fa907aa54dea538eccb6ac93ab02d7b34f9 (patch) | |
tree | 12a48006f39f40dd424aa2e51e41d26b0f867e8c /tests/texturing/tex3d.c | |
parent | 03cc90919422d995d24151e499c9f120404d50b0 (diff) |
Rename PIGLIT_SUCCESS and PIGLIT_FAILURE to PIGLIT_PASS and PIGLIT_FAIL, resp.
Diffstat (limited to 'tests/texturing/tex3d.c')
-rw-r--r-- | tests/texturing/tex3d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/texturing/tex3d.c b/tests/texturing/tex3d.c index d1544950a..5246b3fa0 100644 --- a/tests/texturing/tex3d.c +++ b/tests/texturing/tex3d.c @@ -189,7 +189,7 @@ static void test_simple(int w, int h, int d, GLenum format) if (!success) { fprintf(stderr, "Failure with texture size %ix%ix%i, format = %s\n", w, h, d, formatname(format)); - piglit_report_result(PIGLIT_FAILURE); + piglit_report_result(PIGLIT_FAIL); } } @@ -209,7 +209,7 @@ piglit_display(void) } } - return PIGLIT_SUCCESS; + return PIGLIT_PASS; } |