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:
Ahson Khan 2021-11-05 15:30:59 -07:00 committed by GitHub
parent ae612c5db5
commit 1d7b6bb485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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 */

View File

@ -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