From: Chris Wilson Date: Thu, 8 May 2014 09:04:35 +0000 (+0100) Subject: igt/gem_lut_handle: Fix errno checking X-Git-Tag: intel-gpu-tools-1.7~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e46ff3f8c25957d641420fef4d680d48ce0a365f;p=profile%2Fextras%2Fintel-gpu-tools.git igt/gem_lut_handle: Fix errno checking Regression from commit c1404e05b7477122b9923ba029593c2cb64671a7 Author: Chris Wilson Date: Tue Apr 29 07:14:33 2014 +0100 errno is reset after each syscall Signed-off-by: Chris Wilson --- diff --git a/tests/gem_lut_handle.c b/tests/gem_lut_handle.c index 705e8b3..14e3977 100644 --- a/tests/gem_lut_handle.c +++ b/tests/gem_lut_handle.c @@ -82,9 +82,12 @@ static int exec(int fd, uint32_t handle, unsigned int flags) i915_execbuffer2_set_context_id(execbuf, 0); execbuf.rsvd2 = 0; - return drmIoctl(fd, - DRM_IOCTL_I915_GEM_EXECBUFFER2, - &execbuf); + if (drmIoctl(fd, + DRM_IOCTL_I915_GEM_EXECBUFFER2, + &execbuf)) + return -errno; + + return 0; } static int many_exec(int fd, uint32_t batch, int num_exec, int num_reloc, unsigned flags) @@ -167,15 +170,15 @@ static int many_exec(int fd, uint32_t batch, int num_exec, int num_reloc, unsign } #define _fail(x) ((x) == -ENOENT) -#define ASSERT(x) do { \ +#define ASSERT(x, y) do { \ if (!(x)) { \ fprintf(stderr, "%s:%d failed, errno=%d\n", \ - __FUNCTION__, __LINE__, errno); \ + __FUNCTION__, __LINE__, -y); \ abort(); \ } \ } while (0) -#define fail(x) ASSERT(_fail(x)) -#define pass(x) ASSERT(!_fail(x)) +#define fail(x) ASSERT(_fail(x), x) +#define pass(x) ASSERT(!_fail(x), x) igt_simple_main {