mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-23 22:32:57 +00:00
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:
@@ -97,7 +97,7 @@ static void loop(int fd, uint32_t handle, unsigned ring_id, const char *ring_nam
|
||||
|
||||
gettimeofday(&start, NULL);
|
||||
if (exec(fd, handle, count, ring_id))
|
||||
exit(1);
|
||||
igt_fail(1);
|
||||
gettimeofday(&end, NULL);
|
||||
printf("Time to exec x %d: %7.3fµs (ring=%s)\n",
|
||||
count, elapsed(&start, &end, count), ring_name);
|
||||
|
||||
Reference in New Issue
Block a user