From 7b8784dccf303c4fd9c6a1c2e3f9fae7d00fde2f Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Tue, 29 Oct 2013 07:47:33 +0100 Subject: [PATCH] tests/kms_cursor_crc: Use igt_exit Otherwise the exit codes are all bogus. Signed-off-by: Daniel Vetter --- tests/kms_cursor_crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c index 61499c99..3828ac33 100644 --- a/tests/kms_cursor_crc.c +++ b/tests/kms_cursor_crc.c @@ -386,5 +386,5 @@ int main(int argc, char **argv) fclose(data.ctl); } - return 0; + igt_exit(); }