[igt-dev] [PATCH 03/76] i915/gem_flink_basic: Close device before exit
Mauro Carvalho Chehab
mauro.chehab at linux.intel.com
Mon Sep 26 06:17:08 UTC 2022
From: Chris Wilson <chris.p.wilson at intel.com>
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson at intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda at intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab at kernel.org>
---
To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover.
See [PATCH 00/76] at: https://lore.kernel.org/all/cover.1664173031.git.mchehab@kernel.org/
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 <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -34,8 +33,12 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
+
#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
More information about the igt-dev
mailing list