summaryrefslogtreecommitdiff
path: root/tests/gem_basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem_basic.c')
-rw-r--r--tests/gem_basic.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/gem_basic.c b/tests/gem_basic.c
index b2176fba..4e4b6cbd 100644
--- a/tests/gem_basic.c
+++ b/tests/gem_basic.c
@@ -88,7 +88,11 @@ int main(int argc, char **argv)
{
int fd;
- fd = drm_open_any();
+ fd = drm_open_matching("8086:*", 0);
+ if (fd < 0) {
+ fprintf(stderr, "failed to open intel drm device\n");
+ return 0;
+ }
test_bad_close(fd);
test_create_close(fd);