[igt-dev] [PATCH] tests/i915/gem_userptr_blits: Skip sd-probe test for discrete platforms

Gwan-gyeong Mun gwan-gyeong.mun at intel.com
Fri Jan 7 17:10:35 UTC 2022


The DRM_IOCTL_I915_GEM_SET_DOMAIN ioctl does not support for discrete gpu.
It skips sd-probe test for discrete platforms.

https://patchwork.freedesktop.org/patch/msgid/20210715101536.2606307-5-matthew.auld@intel.com

Cc: Matthew Auld <matthew.auld at intel.com>
Signed-off-by: Gwan-gyeong Mun <gwan-gyeong.mun at intel.com>
---
 tests/i915/gem_userptr_blits.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index a4dca4c0..c1c3bf87 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -2374,8 +2374,11 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 		igt_subtest("forbidden-operations")
 			test_forbidden_ops(fd);
 
-		igt_subtest("sd-probe")
+		igt_subtest("sd-probe") {
+			igt_skip_on_f(gem_has_lmem(fd),
+				      "GEM_SET_DOMAIN does not support for discrete platform");
 			test_sd_probe(fd);
+		}
 
 		igt_subtest("set-cache-level")
 			test_set_caching(fd);
-- 
2.34.1



More information about the igt-dev mailing list