tests: s/exit(EXIT_SUCCESS)/igt_success()/

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter
2013-08-13 12:50:39 +02:00
parent a4cb8954b2
commit c9d0378281
8 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -130,7 +130,7 @@ static void parse(int argc, char *argv[])
case 'h':
case '?':
default:
exit(EXIT_SUCCESS);
igt_success();
break;
}
}
@@ -169,5 +169,5 @@ int main(int argc, char *argv[])
free(threads);
close(fd);
exit(EXIT_SUCCESS);
igt_success();
}