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 3BE0910E0A0 for ; Fri, 26 May 2023 14:20:15 +0000 (UTC) From: Andrzej Hajda To: igt-dev@lists.freedesktop.org Date: Fri, 26 May 2023 16:20:04 +0200 Message-Id: <20230526142004.310852-1-andrzej.hajda@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v2] i915/gem_ctx_persistence: skip heartbeat tests with GuC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Nirmoy Das Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: GuC does not support fully updating of persisting contexts, especially heartbeat related parameters. Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/3952 Signed-off-by: Andrzej Hajda --- v2: GuC checks moved to test functions (Kamil) --- tests/i915/gem_ctx_persistence.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/i915/gem_ctx_persistence.c b/tests/i915/gem_ctx_persistence.c index 584137db454..df9b1c491ed 100644 --- a/tests/i915/gem_ctx_persistence.c +++ b/tests/i915/gem_ctx_persistence.c @@ -661,6 +661,8 @@ static void test_noheartbeat_many(int i915, int count, unsigned int flags) { unsigned long checked = 0; + igt_require(!gem_using_guc_submission(i915)); + cleanup(i915); enable_hangcheck(i915); @@ -721,6 +723,8 @@ static void test_noheartbeat_close(int i915, unsigned int flags) { unsigned long checked = 0; + igt_require(!gem_using_guc_submission(i915)); + cleanup(i915); enable_hangcheck(i915); -- 2.34.1