igt/gem_cpu_reloc: Pretty print execbuf failures

References: https://bugs.freedesktop.org/show_bug.cgi?id=85672
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson
2015-04-03 09:25:02 +01:00
parent 71de427b53
commit 43a1f64e72
2 changed files with 5 additions and 7 deletions
+3 -5
View File
@@ -429,12 +429,10 @@ uint32_t gem_create(int fd, int size)
*/
void gem_execbuf(int fd, struct drm_i915_gem_execbuffer2 *execbuf)
{
int ret;
int result;
ret = drmIoctl(fd,
DRM_IOCTL_I915_GEM_EXECBUFFER2,
execbuf);
igt_assert(ret == 0);
result = drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf);
igt_assert(result == 0);
errno = 0;
}