diff options
author | Kristian Høgsberg <krh@redhat.com> | 2009-04-06 17:13:01 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2009-04-06 17:13:01 -0400 |
commit | e9d6116e5bd30639d6333ef95462fe300f47ccd5 (patch) | |
tree | f704c598394685cffea66bf6bdccf88a1b6ea96e /tests/gem_basic.c | |
parent | 51d6346f9f3c425f49e57d185530c6bcaeb94f5e (diff) |
Use libudev in test case to only run gem tests for intel devices.
Diffstat (limited to 'tests/gem_basic.c')
-rw-r--r-- | tests/gem_basic.c | 6 |
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); |