From c82ef03e4c92017bf5644f294ea04e30500f8d4c Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 26 Sep 2011 16:03:20 +0100 Subject: drmtest: make check should fail so hard on unable to open device --- tests/drmtest.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/drmtest.c b/tests/drmtest.c index a685102d..022994a0 100644 --- a/tests/drmtest.c +++ b/tests/drmtest.c @@ -62,7 +62,7 @@ int drm_open_matching(const char *pci_glob, int flags) struct udev_device *device, *parent; struct udev_list_entry *entry; const char *pci_id, *path; - const char *usub; + const char *usub, *dnode; int fd; udev = udev_new(); @@ -86,7 +86,10 @@ int drm_open_matching(const char *pci_glob, int flags) pci_id = udev_device_get_property_value(parent, "PCI_ID"); if (fnmatch(pci_glob, pci_id, 0) != 0) continue; - fd = open(udev_device_get_devnode(device), O_RDWR); + dnode = udev_device_get_devnode(device); + if (strstr(dnode, "control")) + continue; + fd = open(dnode, O_RDWR); if (fd < 0) continue; if ((flags & DRM_TEST_MASTER) && !is_master(fd)) { @@ -109,7 +112,7 @@ int drm_open_any(void) if (fd < 0) { fprintf(stderr, "failed to open any drm device\n"); - abort(); + exit(0); } return fd; @@ -124,7 +127,7 @@ int drm_open_any_master(void) if (fd < 0) { fprintf(stderr, "failed to open any drm device\n"); - abort(); + exit(0); } return fd; -- cgit v1.2.3