[igt-dev] [PATCH 02/76] i915/gem_basic: Close device before exit
Mauro Carvalho Chehab
mauro.chehab at linux.intel.com
Mon Sep 26 06:17:07 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_basic.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tests/i915/gem_basic.c b/tests/i915/gem_basic.c
index 17ae190cb2cb..2aa5d850cc10 100644
--- a/tests/i915/gem_basic.c
+++ b/tests/i915/gem_basic.c
@@ -25,7 +25,6 @@
*
*/
-#include "igt.h"
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
@@ -37,7 +36,10 @@
#include <sys/ioctl.h>
#include "drm.h"
+
#include "i915/gem_create.h"
+#include "igt.h"
+#include "igt_types.h"
IGT_TEST_DESCRIPTION("Tests basic gem_create and gem_close IOCTLs");
@@ -78,10 +80,10 @@ test_create_fd_close(int fd)
close(fd);
}
-int fd;
-
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