summaryrefslogtreecommitdiff
path: root/tests/gem_mmap_offset_exhaustion.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem_mmap_offset_exhaustion.c')
-rw-r--r--tests/gem_mmap_offset_exhaustion.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/gem_mmap_offset_exhaustion.c b/tests/gem_mmap_offset_exhaustion.c
index 50153cc6..8c8e3fa2 100644
--- a/tests/gem_mmap_offset_exhaustion.c
+++ b/tests/gem_mmap_offset_exhaustion.c
@@ -60,8 +60,7 @@ create_and_map_bo(int fd)
handle = gem_create(fd, OBJECT_SIZE);
- ptr = __gem_mmap__gtt(fd, handle, OBJECT_SIZE, PROT_READ | PROT_WRITE);
- igt_assert(ptr);
+ ptr = gem_mmap__gtt(fd, handle, OBJECT_SIZE, PROT_READ | PROT_WRITE);
/* touch it to force it into the gtt */
*ptr = 0;