From 30c0d5e14a66923de229791f3b21bf2187fe775b Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 22 Dec 2022 21:19:34 -0800 Subject: [PATCH] posix_spawnp-tests: fix filename typo Problem reported for GNU m4 by Mitchell Dorrell in: https://lists.gnu.org/r/bug-m4/2022-12/msg00000.html * tests/test-posix_spawnp-script.c (DATA_FILENAME): Fix typo in file name that caused race with test-posix_spawn-script.c. --- ChangeLog | 9 +++++++++ tests/test-posix_spawnp-script.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 98343adc0d..62ec94f9d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2022-12-22 Paul Eggert + + posix_spawnp-tests: fix filename typo + Problem reported for GNU m4 by Mitchell Dorrell in: + https://lists.gnu.org/r/bug-m4/2022-12/msg00000.html + * tests/test-posix_spawnp-script.c (DATA_FILENAME): + Fix typo in file name that caused race with + test-posix_spawn-script.c. + 2022-11-27 Paul Eggert explicit_bzero: add poison diff --git a/tests/test-posix_spawnp-script.c b/tests/test-posix_spawnp-script.c index 0702d66b20..549219e8f1 100644 --- a/tests/test-posix_spawnp-script.c +++ b/tests/test-posix_spawnp-script.c @@ -28,7 +28,7 @@ #include "macros.h" -#define DATA_FILENAME "test-posix_spawn-script.tmp" +#define DATA_FILENAME "test-posix_spawnp-script.tmp" int main () -- 2.39.5