[i-g-t V6 01/41] lib/drmtest: Add is_vkms_device()
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Wed Apr 24 10:26:09 UTC 2024
From: Harry Wentland <harry.wentland at amd.com>
Signed-off-by: Harry Wentland <harry.wentland at amd.com>
---
lib/drmtest.c | 5 +++++
lib/drmtest.h | 1 +
2 files changed, 6 insertions(+)
diff --git a/lib/drmtest.c b/lib/drmtest.c
index f8810da43..6c4073a79 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -106,6 +106,11 @@ static bool __is_device(int fd, const char *expect)
return strcmp(expect, name) == 0;
}
+bool is_vkms_device(int fd)
+{
+ return __is_device(fd, "vkms");
+}
+
bool is_amdgpu_device(int fd)
{
return __is_device(fd, "amdgpu");
diff --git a/lib/drmtest.h b/lib/drmtest.h
index bbe5f252f..0de3ec145 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -132,6 +132,7 @@ void igt_require_nouveau(int fd);
void igt_require_vc4(int fd);
void igt_require_xe(int fd);
+bool is_vkms_device(int fd);
bool is_amdgpu_device(int fd);
bool is_i915_device(int fd);
bool is_mtk_device(int fd);
--
2.43.2
More information about the Intel-gfx-trybot
mailing list