aboutsummaryrefslogtreecommitdiff
path: root/tests/gem_mmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem_mmap.c')
-rw-r--r--tests/gem_mmap.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/gem_mmap.c b/tests/gem_mmap.c
index b5c15463..d24005ba 100644
--- a/tests/gem_mmap.c
+++ b/tests/gem_mmap.c
@@ -81,7 +81,11 @@ int main(int argc, char **argv)
int ret;
int handle;
- fd = drm_open_any();
+ fd = drm_open_matching("8086:*", 0);
+ if (fd < 0) {
+ fprintf(stderr, "failed to open intel drm device, skipping\n");
+ return 0;
+ }
memset(&mmap, 0, sizeof(mmap));
mmap.handle = 0x10101010;