[PATCH 1/6] ws2_32/tests: Avoid some more test failures on Vista.

Zebediah Figura z.figura12 at gmail.com
Sat Jun 19 18:20:07 CDT 2021


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/ws2_32/tests/sock.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c
index f67bc4efae5..13a5a8687b0 100644
--- a/dlls/ws2_32/tests/sock.c
+++ b/dlls/ws2_32/tests/sock.c
@@ -3816,6 +3816,9 @@ static void test_fionread_siocatmark(void)
     ret = recv(client, buffer, 1, MSG_OOB);
     ok(ret == 1, "got %d\n", ret);
 
+    /* wait for the data to be available */
+    check_poll_mask(client, POLLRDBAND, POLLRDBAND);
+
     check_fionread_siocatmark_todo(client, 2, FALSE);
 
     ret = recv(client, buffer, 5, 0);
@@ -3831,6 +3834,9 @@ static void test_fionread_siocatmark(void)
     ret = send(server, "a", 1, MSG_OOB);
     ok(ret == 1, "got %d\n", ret);
 
+    /* wait for the data to be available */
+    check_poll_mask(client, POLLRDBAND, POLLRDBAND);
+
     ret = 1;
     ret = setsockopt(client, SOL_SOCKET, SO_OOBINLINE, (char *)&ret, sizeof(ret));
     ok(!ret, "got error %u\n", WSAGetLastError());
@@ -3845,6 +3851,9 @@ static void test_fionread_siocatmark(void)
     ret = send(server, "a", 1, MSG_OOB);
     ok(ret == 1, "got %d\n", ret);
 
+    /* wait for the data to be available */
+    check_poll_mask(client, POLLRDNORM, POLLRDNORM);
+
     check_fionread_siocatmark(client, 1, TRUE);
 
     closesocket(client);
-- 
2.30.2




More information about the wine-devel mailing list