mirror of
https://github.com/curl/curl.git
synced 2026-07-25 14:27:23 +03: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:
parent
6cd066f64b
commit
769a4687df
3 changed files with 12 additions and 0 deletions
|
|
@ -29,6 +29,10 @@
|
|||
* be shared.
|
||||
*/
|
||||
|
||||
#include "timeval.h"
|
||||
|
||||
struct connectdata;
|
||||
|
||||
struct conncache {
|
||||
struct Curl_hash hash;
|
||||
size_t num_conn;
|
||||
|
|
|
|||
|
|
@ -22,10 +22,14 @@
|
|||
*
|
||||
***************************************************************************/
|
||||
|
||||
#include "llist.h"
|
||||
#include "hash.h"
|
||||
#include "conncache.h"
|
||||
#include "psl.h"
|
||||
#include "socketpair.h"
|
||||
|
||||
struct connectdata;
|
||||
|
||||
struct Curl_message {
|
||||
struct Curl_llist_element list;
|
||||
/* the 'CURLMsg' is the part that is visible to the external user */
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
*/
|
||||
|
||||
#include "curl_setup.h"
|
||||
#include "multihandle.h" /* for ENABLE_WAKEUP */
|
||||
#include <stdio.h>
|
||||
|
||||
static const char *disabled[]={
|
||||
|
|
@ -65,6 +66,9 @@ static const char *disabled[]={
|
|||
#endif
|
||||
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
||||
"verbose-strings",
|
||||
#endif
|
||||
#ifndef ENABLE_WAKEUP
|
||||
"wakeup",
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue