From 5033321fa5a962a580f3cf9fa7103159e0caa0f1 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Nov 2017 07:52:47 -0800 Subject: [PATCH] test-faccessat.c: correct BASE definition to avoid parallel test failure * tests/test-faccessat.c (BASE): Define using this file's name, not that of test-lstat.c. Using the latter caused this test to fail sometimes when run concurrently with test-lstat. --- ChangeLog | 7 +++++++ tests/test-faccessat.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3dab9a249c..9f458045c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2017-11-28 Jim Meyering + + test-faccessat.c: correct BASE definition to avoid parallel test failure + * tests/test-faccessat.c (BASE): Define using this file's name, not + that of test-lstat.c. Using the latter caused this test to fail + sometimes when run concurrently with test-lstat. + 2017-11-27 Daiki Ueno unicase: fix VPATH build diff --git a/tests/test-faccessat.c b/tests/test-faccessat.c index 53855ba91a..fe1db4129c 100644 --- a/tests/test-faccessat.c +++ b/tests/test-faccessat.c @@ -26,7 +26,7 @@ SIGNATURE_CHECK (faccessat, int, (int, const char *, int, int)); #include "macros.h" -#define BASE "test-lstat.t" +#define BASE "test-faccessat.t" int main (void) -- 2.39.5