From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id DEE4710E232 for ; Thu, 1 Jun 2023 11:44:53 +0000 (UTC) From: Kunal Joshi To: igt-dev@lists.freedesktop.org Date: Thu, 1 Jun 2023 17:18:54 +0530 Message-Id: <20230601114856.2500802-4-kunal1.joshi@intel.com> In-Reply-To: <20230601114856.2500802-1-kunal1.joshi@intel.com> References: <20230601114856.2500802-1-kunal1.joshi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 3/5] tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported for xe as of now List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kunal Joshi Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Signed-off-by: Kunal Joshi --- tests/i915/kms_frontbuffer_tracking.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c index 9b4c6e59..e31918e8 100644 --- a/tests/i915/kms_frontbuffer_tracking.c +++ b/tests/i915/kms_frontbuffer_tracking.c @@ -3700,7 +3700,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) t.flip = FLIP_PAGEFLIP; t.tiling = opt.tiling; igt_subtest("basic") { - igt_require_gem(drm.fd); + if (!is_xe_device(drm.fd)) + igt_require_gem(drm.fd); basic_subtest(&t); } -- 2.25.1