From 9a0e6fd00473ad2c529ec86249b48d88e893d165 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 27 Jul 2022 15:24:37 +0100 Subject: testlib: Be compatible with ancient GLib by using glnx_close_fd This is an enabler for testing a backport of GTest helpers (g_test_skip(), etc.) in the oldest environment that I have conveniently available (Steam Runtime 1 'scout' with GLib 2.32). Signed-off-by: Simon McVittie --- tests/libglnx-testlib.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/libglnx-testlib.c b/tests/libglnx-testlib.c index 37b3ece..3eb2ba1 100644 --- a/tests/libglnx-testlib.c +++ b/tests/libglnx-testlib.c @@ -67,8 +67,7 @@ _glnx_test_auto_temp_dir_leave (_GLnxTestAutoTempDir *dir) glnx_tmpdir_delete (&dir->temp_dir, NULL, &error); g_assert_no_error (error); - g_close (dir->old_cwd_fd, &error); - g_assert_no_error (error); + glnx_close_fd (&dir->old_cwd_fd); g_free (dir->old_cwd); g_free (dir); -- cgit v1.2.1