summaryrefslogtreecommitdiff
path: root/tests/gem_stress.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-08-13 12:56:06 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-08-13 15:15:17 +0200
commit5e25fcc285240353ab15bd4c3a0d0e02d970f45b (patch)
treeb5f1d461532308a6fb4e4c3057d238d5d3ea0709 /tests/gem_stress.c
parentb30d95f33ca9c7c2cd3ef9e3e23ea965ee784a8a (diff)
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>
Diffstat (limited to 'tests/gem_stress.c')
-rw-r--r--tests/gem_stress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gem_stress.c b/tests/gem_stress.c
index 283510bd..74b34aea 100644
--- a/tests/gem_stress.c
+++ b/tests/gem_stress.c
@@ -209,7 +209,7 @@ static void cpucpy2d(uint32_t *src, unsigned src_stride, unsigned src_x, unsigne
printf("mismatch at tile %i pos %i, read %i, expected %i, diff %i\n",
logical_tile_no, i*options.tile_size + j, tmp, expect, (int) tmp - expect);
if (options.trace_tile >= 0 && options.fail)
- exit(1);
+ igt_fail(1);
failed++;
}
/* when not aborting, correct any errors */
@@ -217,7 +217,7 @@ static void cpucpy2d(uint32_t *src, unsigned src_stride, unsigned src_x, unsigne
}
}
if (failed && options.fail)
- exit(1);
+ igt_fail(1);
if (failed > stats.max_failed_reads)
stats.max_failed_reads = failed;