From a6874e978418a75a10549ac08d0db9bc9b5abbc8 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 16 Apr 2023 13:41:17 +0200 Subject: posix_spawn_file_actions_addclose tests: Avoid test failure on Cygwin. * tests/test-posix_spawn_file_actions_addclose.c (main): Skip an unportable test also on Cygwin. --- tests/test-posix_spawn_file_actions_addclose.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test-posix_spawn_file_actions_addclose.c b/tests/test-posix_spawn_file_actions_addclose.c index f900415dae..f28017e585 100644 --- a/tests/test-posix_spawn_file_actions_addclose.c +++ b/tests/test-posix_spawn_file_actions_addclose.c @@ -55,8 +55,8 @@ main (void) ASSERT (posix_spawn_file_actions_addclose (&actions, -1) == EBADF); } /* This behaviour is not mandated by POSIX, but happens to pass on all - platforms except musl libc. */ -#if !defined MUSL_LIBC + platforms except musl libc and Cygwin. */ +#if !(defined MUSL_LIBC || defined __CYGWIN__) { int bad_fd = big_fd (); errno = 0; -- cgit v1.2.1