From 000a0972c21ca1a17609e638907607470ee21751 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 10 Dec 2010 12:10:13 +0000 Subject: tests: Update for ENOENT returns from unknown handles Signed-off-by: Chris Wilson --- tests/gem_mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/gem_mmap.c') diff --git a/tests/gem_mmap.c b/tests/gem_mmap.c index d24005ba..2239789f 100644 --- a/tests/gem_mmap.c +++ b/tests/gem_mmap.c @@ -93,7 +93,7 @@ int main(int argc, char **argv) mmap.size = 4096; printf("Testing mmaping of bad object.\n"); ret = ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &mmap); - assert(ret == -1 && errno == EBADF); + assert(ret == -1 && errno == ENOENT); memset(&create, 0, sizeof(create)); create.size = OBJECT_SIZE; -- cgit v1.2.3