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_flink.c | |
parent | 51d6346f9f3c425f49e57d185530c6bcaeb94f5e (diff) |
Use libudev in test case to only run gem tests for intel devices.
Diffstat (limited to 'tests/gem_flink.c')
-rw-r--r-- | tests/gem_flink.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/gem_flink.c b/tests/gem_flink.c index d2e062fd..ff999d2e 100644 --- a/tests/gem_flink.c +++ b/tests/gem_flink.c @@ -117,7 +117,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, skipping\n"); + return 0; + } test_flink(fd); test_double_flink(fd); |