summaryrefslogtreecommitdiff
path: root/tests/test-poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-poll.c')
-rw-r--r--tests/test-poll.c2
1 files changed, 1 insertions, 1 deletions
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