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-bindattriblocation.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-bindattriblocation.c')
-rw-r--r-- | tests/shaders/glsl-bindattriblocation.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/shaders/glsl-bindattriblocation.c b/tests/shaders/glsl-bindattriblocation.c index 62b0f13c3..cda840e8e 100644 --- a/tests/shaders/glsl-bindattriblocation.c +++ b/tests/shaders/glsl-bindattriblocation.c @@ -127,9 +127,5 @@ piglit_init(int argc, char **argv) { piglit_require_vertex_shader(); - if (piglit_get_gl_version() < 20) { - printf("Requires OpenGL 2.0\n"); - piglit_report_result(PIGLIT_SKIP); - exit(1); - } + piglit_require_gl_version(20); } |