From 6d299547803f0f39756d26dc5e3adcc5a4277cb2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Sun, 10 Dec 2017 17:41:57 -0800 Subject: [PATCH] test-faccessat.c: unlink temp file to avoid subsequent test failure * tests/test-faccessat.c: Remove the file to avoid failure to open the file on subsequent runs due to being created with no permissions. --- ChangeLog | 7 +++++++ tests/test-faccessat.c | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 96ba6d0ca3..ccb526b5f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2017-12-10 Pádraig Brady + + test-faccessat.c: unlink temp file to avoid subsequent test failure + * tests/test-faccessat.c: Remove the file to avoid failure + to open the file on subsequent runs due to being created + with no permissions. + 2017-12-10 Bruno Haible doc: New sect. "Modifying the build rules of a Gnulib import directory". diff --git a/tests/test-faccessat.c b/tests/test-faccessat.c index fe1db4129c..e880faee58 100644 --- a/tests/test-faccessat.c +++ b/tests/test-faccessat.c @@ -69,6 +69,7 @@ main (void) unlink (BASE "link3"); } unlink (BASE "link1"); + unlink (BASE "file"); return 0; } -- 2.39.5