diff options
author | Bruno Haible <bruno@clisp.org> | 2023-04-25 13:38:47 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2023-04-25 13:38:47 +0200 |
commit | 9c0e7adb118023cb12248ef035636db4f678c700 (patch) | |
tree | d63b4e893831b4d7af0e393abc2018936622d71f | |
parent | 022714860f3cff7fea0a126659dd87d7ec3edbb8 (diff) | |
download | gnulib-9c0e7adb118023cb12248ef035636db4f678c700.tar.gz |
poll tests: Avoid test failure on native Windows.
* tests/test-poll.c (test_pipe): Disable the POLLHUP check also on
native Windows.
* doc/posix-functions/poll.texi: Mention also native Windows w.r.t.
POLLHUP.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | doc/posix-functions/poll.texi | 2 | ||||
-rw-r--r-- | tests/test-poll.c | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,13 @@ 2023-04-25 Bruno Haible <bruno@clisp.org> + poll tests: Avoid test failure on native Windows. + * tests/test-poll.c (test_pipe): Disable the POLLHUP check also on + native Windows. + * doc/posix-functions/poll.texi: Mention also native Windows w.r.t. + POLLHUP. + +2023-04-25 Bruno Haible <bruno@clisp.org> + dfa tests: Fix compilation error (regression 2023-04-22). * tests/test-dfa-match-aux.c: Include unistd.h. * modules/dfa-tests (Depends-on): Add unistd. diff --git a/doc/posix-functions/poll.texi b/doc/posix-functions/poll.texi index 1fad8f85a9..ab7083c1c0 100644 --- a/doc/posix-functions/poll.texi +++ b/doc/posix-functions/poll.texi @@ -26,5 +26,5 @@ thus busy wait. @item On some platforms, file descriptors other than sockets do not support POLLHUP; they will return a "readable" or "writable" status instead: -AIX 7.2, HP NonStop. +AIX 7.2, HP NonStop, mingw, MSVC. @end itemize diff --git a/tests/test-poll.c b/tests/test-poll.c index 716c38b492..f34f7f460a 100644 --- a/tests/test-poll.c +++ b/tests/test-poll.c @@ -362,7 +362,7 @@ test_pipe (void) test_pair (fd[0], fd[1]); close (fd[0]); int revents = poll1_wait (fd[1], POLLIN | POLLOUT); -#if !defined _AIX +#if !(defined _AIX || (defined _WIN32 && !defined __CYGWIN__)) if ((revents & (POLLHUP | POLLERR)) == 0) failed ("expecting POLLHUP after shutdown"); #else |