diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-02-25 22:18:46 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-04-21 20:32:33 +0200 |
commit | 2df64390b3031f7219b5dc5d21f9e64aea5a7c13 (patch) | |
tree | 0b79174db2e5bc50c4548d4ff72ebbf1e9a7e12a /tests/libtest | |
parent | b36442b24305f3cda7c13cc64b46838995a4985b (diff) | |
download | curl-2df64390b3031f7219b5dc5d21f9e64aea5a7c13.tar.gz |
lib1564.c: enable last wakeup test part on Windows
Suggested-by: Gergely Nagy
Reviewed-by: Jay Satiro
Reviewed-by: Marcel Raad
Closes #6245
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib1564.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/libtest/lib1564.c b/tests/libtest/lib1564.c index 8e76e098f..90e08b6c2 100644 --- a/tests/libtest/lib1564.c +++ b/tests/libtest/lib1564.c @@ -109,15 +109,7 @@ int test(char *URL) abort_on_test_timeout(); -#if !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32__) \ - && !defined(__CYGWIN__) - /* Even lots of previous wakeups should not wake up this. - - On Windows (particularly when using MinGW), the socketpair - used for curl_multi_wakeup() is really asynchronous, - meaning when it's called a lot, it can take some time - before all of the data can be read. Sometimes it can wake - up more than one curl_multi_poll() call. */ + /* Even lots of previous wakeups should not wake up this. */ time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); @@ -131,7 +123,6 @@ int test(char *URL) } abort_on_test_timeout(); -#endif test_cleanup: |