[Intel-gfx] [PATCH i-g-t] drm_import_export: Check for working and known GPU
Chris Wilson
chris at chris-wilson.co.uk
Sat Jul 25 08:54:24 UTC 2020
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 at 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
More information about the Intel-gfx
mailing list