diff mbox series

[i-g-t] drm_import_export: Check for working and known GPU

Message ID 20200725085424.523604-1-chris@chris-wilson.co.uk (mailing list archive)
State New, archived
Headers show
Series [i-g-t] drm_import_export: Check for working and known GPU | expand

Commit Message

Chris Wilson July 25, 2020, 8:54 a.m. UTC
Since this relies on libdrm being updated for new GPUs [spoiler
warning], just mark future failures with a skip until support lands.

References: https://gitlab.freedesktop.org/drm/intel/-/issues/2220
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/drm_import_export.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/tests/drm_import_export.c b/tests/drm_import_export.c
index 6174c9973..d8ae84b32 100644
--- a/tests/drm_import_export.c
+++ b/tests/drm_import_export.c
@@ -40,6 +40,8 @@ 
 #include <unistd.h>
 #include <sys/syscall.h>
 
+#include "i915/gem.h"
+
 #define DURATION 10
 
 int fd;
@@ -235,13 +237,14 @@  igt_main {
 	igt_fixture {
 		fd1 = drm_open_driver(DRIVER_INTEL);
 		igt_assert(fd1 >= 0);
+		igt_require_gem(fd1);
+
 		bufmgr1 = drm_intel_bufmgr_gem_init(fd1, 8 *1024);
-		igt_assert(bufmgr1);
+		igt_require(bufmgr1);
 
 		drm_intel_bufmgr_gem_enable_reuse(bufmgr1);
 
-		fd = drm_open_driver(DRIVER_INTEL);
-		igt_assert(fd >= 0);
+		fd = gem_reopen_driver(fd1);
 		bufmgr = drm_intel_bufmgr_gem_init(fd, 8 *1024);
 		igt_assert(bufmgr);