From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7DA1210E46C for ; Wed, 5 Oct 2022 07:45:54 +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 50B3F580CBB 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 1ofz6E-000EcH-3A for igt-dev@lists.freedesktop.org; Wed, 05 Oct 2022 09:45:50 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Wed, 5 Oct 2022 09:44:32 +0200 Message-Id: <20221005074546.55955-4-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 03/77] i915/gem_flink_basic: 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: Andrzej Hajda Reviewed-by: Nirmoy Das Signed-off-by: Mauro Carvalho Chehab --- tests/i915/gem_flink_basic.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/i915/gem_flink_basic.c b/tests/i915/gem_flink_basic.c index 4e207c2ab546..2620bc55daf0 100644 --- a/tests/i915/gem_flink_basic.c +++ b/tests/i915/gem_flink_basic.c @@ -25,7 +25,6 @@ * */ -#include "igt.h" #include #include #include @@ -34,8 +33,12 @@ #include #include #include + #include "drm.h" +#include "igt.h" +#include "igt_types.h" + IGT_TEST_DESCRIPTION("Tests for flink - a way to export a gem object by name"); static void @@ -152,12 +155,14 @@ test_flink_lifetime(int fd) ret = ioctl(fd2, DRM_IOCTL_GEM_OPEN, &open_struct); igt_assert_eq(ret, 0); igt_assert(open_struct.handle != 0); -} -int fd; + close(fd2); +} igt_main { + igt_fd_t(fd); + igt_fixture fd = drm_open_driver(DRIVER_INTEL); -- 2.37.3