Skip to content
Snippets Groups Projects
Commit 63fad159 authored by Yang Tse's avatar Yang Tse
Browse files

Skip test #558 and #559 also when using a Win32 DLL

parent e5f1480a
No related branches found
No related tags found
No related merge requests found
......@@ -42,8 +42,16 @@
* ones in the public API.
*/
#if defined(CURL_HIDDEN_SYMBOLS)
# define SKIP_TEST 1
#elif defined(WIN32) && !defined(CURL_STATICLIB)
# define SKIP_TEST 1
#else
# undef SKIP_TEST
#endif
#if !defined(CURL_HIDDEN_SYMBOLS)
#if !defined(SKIP_TEST)
#ifdef LIB559
static Curl_addrinfo *fake_ai(void)
......@@ -167,7 +175,7 @@ cleanup:
}
#else /* !defined(CURL_HIDDEN_SYMBOLS) */
#else /* !defined(SKIP_TEST) */
int test(char *URL)
......@@ -178,4 +186,4 @@ int test(char *URL)
}
#endif /* !defined(CURL_HIDDEN_SYMBOLS) */
#endif /* !defined(SKIP_TEST) */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment