From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 409B410E4BF for ; Wed, 5 Oct 2022 07:46:02 +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 821E0580DFF for ; Wed, 5 Oct 2022 00:45:53 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1ofz6F-000Ecm-0N 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:44:42 +0200 Message-Id: <20221005074546.55955-14-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 13/77] i915/gem_media_fill: 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 Acked-by: Andrzej Hajda Reviewed-by: Nirmoy Das Signed-off-by: Mauro Carvalho Chehab --- tests/i915/gem_media_fill.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/i915/gem_media_fill.c b/tests/i915/gem_media_fill.c index 1d08df2473d1..e418047c2e74 100644 --- a/tests/i915/gem_media_fill.c +++ b/tests/i915/gem_media_fill.c @@ -173,5 +173,6 @@ igt_main igt_fixture { igt_collection_destroy(set); igt_stop_hang_detector(); + close(data.drm_fd); } } -- 2.37.3