From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9E31F10E49C for ; Wed, 5 Oct 2022 07:45:55 +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 2F10C580DFF for ; Wed, 5 Oct 2022 00:45:54 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1ofz6F-000Efi-2N 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:27 +0200 Message-Id: <20221005074546.55955-59-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 58/77] kms_vblank: 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 Signed-off-by: Mauro Carvalho Chehab --- tests/kms_vblank.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c index e65e8522a861..5bd3fefe1440 100644 --- a/tests/kms_vblank.c +++ b/tests/kms_vblank.c @@ -550,4 +550,8 @@ igt_main for_each_pipe_static(data.pipe) igt_subtest_group run_subtests_for_pipe(&data); + + igt_fixture { + close(fd); + } } -- 2.37.3