diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-08-13 12:56:06 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-08-13 15:15:17 +0200 |
commit | 5e25fcc285240353ab15bd4c3a0d0e02d970f45b (patch) | |
tree | b5f1d461532308a6fb4e4c3057d238d5d3ea0709 /tests/gem_cs_tlb.c | |
parent | b30d95f33ca9c7c2cd3ef9e3e23ea965ee784a8a (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_cs_tlb.c')
-rw-r--r-- | tests/gem_cs_tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_cs_tlb.c b/tests/gem_cs_tlb.c index b6eb4503..2f8037ac 100644 --- a/tests/gem_cs_tlb.c +++ b/tests/gem_cs_tlb.c @@ -125,7 +125,7 @@ static void run_on_ring(int fd, unsigned ring_id, const char *ring_name) } if (exec(fd, handle_new, split, >t_offset_new, 0)) - exit(1); + igt_fail(1); if (split > 0) { /* Check that we've managed to collide in the tlb. */ |