1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-10 11:35:07 -05:00

tests/server/disabled: add "wakeup"

To allow the test suite to know if wakeup support is disabled in the
build.
This commit is contained in:
Daniel Stenberg 2020-12-11 09:05:47 +01:00
parent 6cd066f64b
commit 769a4687df
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
3 changed files with 12 additions and 0 deletions

View File

@ -29,6 +29,10 @@
* be shared. * be shared.
*/ */
#include "timeval.h"
struct connectdata;
struct conncache { struct conncache {
struct Curl_hash hash; struct Curl_hash hash;
size_t num_conn; size_t num_conn;

View File

@ -22,10 +22,14 @@
* *
***************************************************************************/ ***************************************************************************/
#include "llist.h"
#include "hash.h"
#include "conncache.h" #include "conncache.h"
#include "psl.h" #include "psl.h"
#include "socketpair.h" #include "socketpair.h"
struct connectdata;
struct Curl_message { struct Curl_message {
struct Curl_llist_element list; struct Curl_llist_element list;
/* the 'CURLMsg' is the part that is visible to the external user */ /* the 'CURLMsg' is the part that is visible to the external user */

View File

@ -30,6 +30,7 @@
*/ */
#include "curl_setup.h" #include "curl_setup.h"
#include "multihandle.h" /* for ENABLE_WAKEUP */
#include <stdio.h> #include <stdio.h>
static const char *disabled[]={ static const char *disabled[]={
@ -65,6 +66,9 @@ static const char *disabled[]={
#endif #endif
#ifdef CURL_DISABLE_VERBOSE_STRINGS #ifdef CURL_DISABLE_VERBOSE_STRINGS
"verbose-strings", "verbose-strings",
#endif
#ifndef ENABLE_WAKEUP
"wakeup",
#endif #endif
NULL NULL
}; };