# HG changeset patch # User Pádraig Brady # Date 1512956517 28800 # Node ID eb2faa3cbde4ae42cb7e881df5b2776698428351 # Parent c1c9d3013c37fa6e30a3fce5e83af6885939005e 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. diff -r c1c9d3013c37 -r eb2faa3cbde4 ChangeLog --- a/ChangeLog Sun Dec 10 16:28:43 2017 +0100 +++ b/ChangeLog Sun Dec 10 17:41:57 2017 -0800 @@ -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 -r c1c9d3013c37 -r eb2faa3cbde4 tests/test-faccessat.c --- a/tests/test-faccessat.c Sun Dec 10 16:28:43 2017 +0100 +++ b/tests/test-faccessat.c Sun Dec 10 17:41:57 2017 -0800 @@ -69,6 +69,7 @@ unlink (BASE "link3"); } unlink (BASE "link1"); + unlink (BASE "file"); return 0; }