tests: use igt_fail instead of exit(param != 0)

Mostly a sed job with too manual fixups:
- one case of using _exit instead of exit
- and one case which under some conditions use 77, so convert that
  check to an igt_skip.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter
2013-08-13 12:56:06 +02:00
parent b30d95f33c
commit 5e25fcc285
34 changed files with 127 additions and 124 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ test_large_object(int fd)
if (ret) {
fprintf(stderr, "object creation failed: %s\n",
strerror(errno));
exit(ret);
igt_fail(ret);
}
pin.handle = create.handle;
@@ -74,7 +74,7 @@ test_large_object(int fd)
if (ret) {
fprintf(stderr, "pin failed: %s\n",
strerror(errno));
exit(ret);
igt_fail(ret);
}
gem_write(fd, create.handle, 0, data, obj_size);