diff options
author | Chris Forbes <chrisf@ijw.co.nz> | 2012-09-07 14:20:52 +1200 |
---|---|---|
committer | Chris Forbes <chrisf@ijw.co.nz> | 2012-09-10 20:10:29 +1200 |
commit | 2b53dc1945dbe58b352d30aa2a6c5ccc53babd7e (patch) | |
tree | 3563768333d5f3879f379fd55abdc29e8c2cb6e0 /tests/shaders/glsl-link-bug38015.c | |
parent | 193993238bfb44740618afd7deb9865f361ce992 (diff) |
Convert simple if(piglit_get_gl_version() < N) { SKIP } to require
Generated from the following semantic patch:
@@
expression VER;
expression MSG;
@@
- if (piglit_get_gl_version() < VER) {
- printf(MSG);
- piglit_report_result(PIGLIT_SKIP);
(
- exit(1);
|
)
- }
+ piglit_require_gl_version(VER);
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
Diffstat (limited to 'tests/shaders/glsl-link-bug38015.c')
-rw-r--r-- | tests/shaders/glsl-link-bug38015.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/shaders/glsl-link-bug38015.c b/tests/shaders/glsl-link-bug38015.c index d35c2a044..663eb85f5 100644 --- a/tests/shaders/glsl-link-bug38015.c +++ b/tests/shaders/glsl-link-bug38015.c @@ -58,10 +58,7 @@ void piglit_init(int argc, char **argv) GLint prog; const char *fs_text_ptr = fs_text; - if (piglit_get_gl_version() < 20) { - printf("Requires OpenGL 2.0\n"); - piglit_report_result(PIGLIT_SKIP); - } + piglit_require_gl_version(20); /* Intentionally omit check for GL_ARB_shader_texture_lod. */ |