All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t] drm_import_export: Check for working and known GPU
@ 2020-07-25  8:54 Chris Wilson
  0 siblings, 0 replies; only message in thread
From: Chris Wilson @ 2020-07-25  8:54 UTC (permalink / raw)
  To: intel-gfx; +Cc: Chris Wilson

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 --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);
 
-- 
2.28.0.rc1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-25  8:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-25  8:54 [Intel-gfx] [PATCH i-g-t] drm_import_export: Check for working and known GPU Chris Wilson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.