fix compiler warning: external declaration in primary source file
[platform/upstream/curl.git] / tests / libtest / test.h
1 /*****************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * $Id$
9  */
10
11 /* Now include the setup.h file from libcurl's private libdir (the source
12    version, but that might include "config.h" from the build dir so we need
13    both of them in the include path), so that we get good in-depth knowledge
14    about the system we're building this on */
15
16 #include "setup.h"
17
18 #include <curl/curl.h>
19 #include <stdio.h>
20 #include <string.h>
21 #include <stdlib.h>
22 #include <errno.h>
23
24 #ifdef HAVE_SYS_SOCKET_H
25 #include <sys/socket.h>
26 #endif
27 #ifdef HAVE_SYS_SELECT_H
28 /* since so many tests use select(), we can just as well include it here */
29 #include <sys/select.h>
30 #endif
31 #ifdef HAVE_UNISTD_H
32 /* at least somewhat oldish FreeBSD systems need this for select() */
33 #include <unistd.h>
34 #endif
35
36 #define TEST_ERR_MAJOR_BAD     100
37 #define TEST_ERR_RUNS_FOREVER   99
38
39 extern char *libtest_arg2; /* set by first.c to the argv[2] or NULL */
40 extern char *libtest_arg3; /* set by first.c to the argv[3] or NULL */
41
42 /* argc and argv as passed in to the main() function */
43 extern int test_argc;
44 extern char **test_argv;
45
46 extern int select_test(int num_fds, fd_set *rd, fd_set *wr, fd_set *exc,
47                        struct timeval *tv);
48
49 extern int test(char *URL); /* the actual test function provided by each
50                                individual libXXX.c file */
51