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 CA7B910FBB0 for ; Thu, 14 Apr 2022 10:40:33 +0000 (UTC) From: krishnaiah.bommu@intel.com To: igt-dev@lists.freedesktop.org Date: Thu, 14 Apr 2022 15:53:04 +0530 Message-Id: <20220414102304.1745-1-krishnaiah.bommu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH] i915/gem_eio: increasing the timeout for forced reset completion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Bommu Krishnaiah , Konieczny Kamil Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Bommu Krishnaiah GUC log capture is taking more time on few platforms, so increasing the timeout Signed-off-by: Bommu Krishnaiah Cc: Konieczny Kamil Cc: John Harrison Cc: Andi Shyti --- tests/i915/gem_eio.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c index d9689534d5a..94c3bc04644 100644 --- a/tests/i915/gem_eio.c +++ b/tests/i915/gem_eio.c @@ -72,8 +72,11 @@ static void trigger_reset(int fd) igt_kmsg(KMSG_DEBUG "Forcing GPU reset\n"); igt_force_gpu_reset(fd); - /* The forced reset should be immediate */ - igt_assert_lte(igt_seconds_elapsed(&ts), 2); + /* The forced reset should be immediate, even though + * GUC log capture is taking more time on few platforms, + * so Increasing the timeout + */ + igt_assert_lte(igt_seconds_elapsed(&ts), 10); /* And just check the gpu is indeed running again */ igt_kmsg(KMSG_DEBUG "Checking that the GPU recovered\n"); -- 2.25.1