Commit 4b4109a6 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

ws2_32: Win98 closesocket() does not wake up select.

parent 93f1d487
......@@ -1687,7 +1687,9 @@ static void test_select(void)
ok ( (ret == 0), "closesocket failed unexpectedly: %d\n", ret);
WaitForSingleObject (thread_handle, 1000);
ok ( (thread_params.ReadKilled), "closesocket did not wakeup select\n");
ok ( (thread_params.ReadKilled) ||
broken(thread_params.ReadKilled == 0), /*Win98*/
"closesocket did not wakeup select\n");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment