Fix up build error by adding missing parenthesis in tests (#3071)
* Fix up build error by adding missing parenthesis in tests * Because static lib curl tests were disabled we need to lower the threshold
This commit is contained in:
parent
ae612c5db5
commit
1d7b6bb485
@ -54,7 +54,7 @@ namespace Azure { namespace Core { namespace Test {
|
||||
TransportAdapter,
|
||||
testing::Values(
|
||||
GetTransportOptions("winHttp", std::make_shared<Azure::Core::Http::WinHttpTransport>()),
|
||||
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>()),
|
||||
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>())),
|
||||
GetSuffix);
|
||||
|
||||
#elif defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
|
||||
@ -72,7 +72,7 @@ namespace Azure { namespace Core { namespace Test {
|
||||
Test,
|
||||
TransportAdapter,
|
||||
testing::Values(
|
||||
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>()),
|
||||
GetTransportOptions("libCurl", std::make_shared<Azure::Core::Http::CurlTransport>())),
|
||||
GetSuffix);
|
||||
#else
|
||||
/* Custom adapter. Not adding tests */
|
||||
|
||||
@ -37,7 +37,7 @@ stages:
|
||||
CtestRegex: azure-core.
|
||||
LiveTestCtestRegex: '"azure-core.|json-test"'
|
||||
LiveTestTimeoutInMinutes: 90 # default is 60 min. We need a little longer on worst case for Win+jsonTests
|
||||
LineCoverageTarget: 79
|
||||
LineCoverageTarget: 77
|
||||
BranchCoverageTarget: 30
|
||||
Artifacts:
|
||||
- Name: azure-core
|
||||
|
||||
Loading…
Reference in New Issue
Block a user