From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4788210E49C for ; Wed, 5 Oct 2022 07:46:04 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.61.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id 13A6D580C23 for ; Wed, 5 Oct 2022 00:45:55 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1ofz6F-000Egp-38 for igt-dev@lists.freedesktop.org; Wed, 05 Oct 2022 09:45:51 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Wed, 5 Oct 2022 09:45:45 +0200 Message-Id: <20221005074546.55955-77-mauro.chehab@linux.intel.com> In-Reply-To: <20221005074546.55955-1-mauro.chehab@linux.intel.com> References: <20221005074546.55955-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v4 76/77] i915/gem_ctx_isolation: Close device before exit List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Chris Wilson Close the device fd before we check for leaks during the atexit handlers. Signed-off-by: Chris Wilson Reviewed-by: Nirmoy Das Acked-by: Andrzej Hajda --- tests/i915/gem_ctx_isolation.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/i915/gem_ctx_isolation.c b/tests/i915/gem_ctx_isolation.c index 95d13969fa61..dc52a9a03130 100644 --- a/tests/i915/gem_ctx_isolation.c +++ b/tests/i915/gem_ctx_isolation.c @@ -25,6 +25,7 @@ #include "i915/gem_create.h" #include "igt.h" #include "igt_dummyload.h" +#include "igt_types.h" #define MAX_REG 0x200000 #define NUM_REGS (MAX_REG / sizeof(uint32_t)) @@ -979,7 +980,7 @@ igt_main unsigned int has_context_isolation = 0; const struct intel_execution_engine2 *e; intel_ctx_cfg_t cfg; - int i915 = -1; + igt_fd_t(i915); igt_fixture { int gen; -- 2.37.3