diff options
author | Gergely Nagy <ngg@tresorit.com> | 2019-11-17 15:12:15 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-25 15:45:56 +0100 |
commit | f3c35e371cc70f1b6bc33f7faa904d37d1567eb3 (patch) | |
tree | 3c7668dec5726aa510d7be282ff440c9ee370802 /tests/data/test1565 | |
parent | 0a65febccf0e31bc987be3f90c01194804e61b77 (diff) | |
download | curl-f3c35e371cc70f1b6bc33f7faa904d37d1567eb3.tar.gz |
multi: add curl_multi_wakeup()
This commit adds curl_multi_wakeup() which was previously in the TODO
list under the curl_multi_unblock name.
On some platforms and with some configurations this feature might not be
available or can fail, in these cases a new error code
(CURLM_WAKEUP_FAILURE) is returned from curl_multi_wakeup().
Fixes #4418
Closes #4608
Diffstat (limited to 'tests/data/test1565')
-rw-r--r-- | tests/data/test1565 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/data/test1565 b/tests/data/test1565 new file mode 100644 index 000000000..f554e0f34 --- /dev/null +++ b/tests/data/test1565 @@ -0,0 +1,41 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP GET +multi +multi-threaded +wakeup +</keywords> +</info> + +# Server-side +<reply> +<data nocheck="yes"> +HTTP/1.1 200 OK +Content-Length: 3 + +OK +</data> +</reply> + +# Client-side +<client> +<server> +http +</server> +<tool> +lib1565 +</tool> +<name> +wakeup from another thread +</name> +<command> +http://%HOSTIP:%HTTPPORT/1 +</command> +</client> + +# Verify data after the test has been "shot" +<verify> +</verify> +</testcase> |