Disable unit tests for staticLibCurl since they are failing on Mac (#3068)

This commit is contained in:
Ahson Khan 2021-11-05 14:18:10 -07:00 committed by GitHub
parent 7926ec8c3c
commit ad87699a2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,6 @@
#if defined(BUILD_CURL_HTTP_TRANSPORT_ADAPTER)
#include "azure/core/http/curl_transport.hpp"
#include "http/curl/static_curl_transport.hpp"
#endif
#if defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
@ -56,9 +55,6 @@ namespace Azure { namespace Core { namespace Test {
testing::Values(
GetTransportOptions("winHttp", std::make_shared<Azure::Core::Http::WinHttpTransport>()),
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>()),
GetTransportOptions(
"staticLibCurl",
std::make_shared<Azure::Core::Http::StaticCurlTransport>())),
GetSuffix);
#elif defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
@ -77,9 +73,6 @@ namespace Azure { namespace Core { namespace Test {
TransportAdapter,
testing::Values(
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>()),
GetTransportOptions(
"staticLibCurl",
std::make_shared<Azure::Core::Http::StaticCurlTransport>())),
GetSuffix);
#else
/* Custom adapter. Not adding tests */