summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2017-03-08 12:22:58 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2017-03-08 12:23:55 +0000
commit8fcca1967c539b33c8d69dc834ca564c0fa907fd (patch)
treecee22b1bc7292816eb9c57bf92c09af979148439 /tests
parent28a2f14956f7672e303fed1f9ec85cade7bd7a56 (diff)
igt/gem_madvise: Correct expected results
Trying to execbuf with a purged object is meant to fail. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests')
-rw-r--r--tests/gem_madvise.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/tests/gem_madvise.c b/tests/gem_madvise.c
index d44a60af..729a4d33 100644
--- a/tests/gem_madvise.c
+++ b/tests/gem_madvise.c
@@ -113,19 +113,14 @@ static void
dontneed_before_pwrite(void)
{
int fd = drm_open_driver(DRIVER_INTEL);
- uint32_t buf[] = { MI_BATCH_BUFFER_END, 0 };
- struct drm_i915_gem_pwrite gem_pwrite;
+ uint32_t bbe = MI_BATCH_BUFFER_END;
+ uint32_t handle;
- gem_pwrite.handle = gem_create(fd, OBJECT_SIZE);
- gem_pwrite.offset = 0;
- gem_pwrite.size = sizeof(buf);
- gem_pwrite.data_ptr = to_user_pointer(buf);
- gem_madvise(fd, gem_pwrite.handle, I915_MADV_DONTNEED);
+ handle = gem_create(fd, OBJECT_SIZE);
+ gem_madvise(fd, handle, I915_MADV_DONTNEED);
- igt_assert(drmIoctl(fd, DRM_IOCTL_I915_GEM_PWRITE, &gem_pwrite));
- igt_assert(errno == EFAULT);
+ igt_assert_eq(__gem_write(fd, handle, 0, &bbe, sizeof(bbe)), -EFAULT);
- gem_close(fd, gem_pwrite.handle);
close(fd);
}
@@ -147,9 +142,8 @@ dontneed_before_exec(void)
execbuf.buffers_ptr = to_user_pointer(&exec);
execbuf.buffer_count = 1;
execbuf.batch_len = sizeof(buf);
- gem_execbuf(fd, &execbuf);
+ igt_assert_eq(__gem_execbuf(fd, &execbuf), -EFAULT);
- gem_close(fd, exec.handle);
close(fd);
}