summaryrefslogtreecommitdiff
path: root/tests/gem_dummy_reloc_loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem_dummy_reloc_loop.c')
-rw-r--r--tests/gem_dummy_reloc_loop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gem_dummy_reloc_loop.c b/tests/gem_dummy_reloc_loop.c
index 87cc4613..de292c7c 100644
--- a/tests/gem_dummy_reloc_loop.c
+++ b/tests/gem_dummy_reloc_loop.c
@@ -143,20 +143,20 @@ 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);
}
target_buffer = drm_intel_bo_alloc(bufmgr, "target bo", 4096, 4096);
if (!target_buffer) {
fprintf(stderr, "failed to alloc target buffer\n");
- exit(-1);
+ igt_fail(-1);
}
igt_subtest("render") {