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
+3 -3
View File
@@ -83,7 +83,7 @@ int main(int argc, char **argv)
if (argc != 1) {
fprintf(stderr, "usage: %s\n", argv[0]);
exit(-1);
igt_fail(-1);
}
fd = drm_open_any();
@@ -101,14 +101,14 @@ int main(int argc, char **argv)
bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
if (!bufmgr) {
fprintf(stderr, "failed to init libdrm\n");
exit(-1);
igt_fail(-1);
}
drm_intel_bufmgr_gem_enable_reuse(bufmgr);
batch = intel_batchbuffer_alloc(bufmgr, devid);
if (!batch) {
fprintf(stderr, "failed to create batch buffer\n");
exit(-1);
igt_fail(-1);
}
mi_lri_loop();