Skip to content

Commit 38d2b4b

Browse files
committed
Disabling more http_client tests on Dev14 that AV.
1 parent 444f4ab commit 38d2b4b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Release/tests/functional/http/client/response_stream_tests.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ TEST_FIXTURE(uri_address, response_stream_file_stream_close_early)
206206
VERIFY_THROWS((resp = client.request(msg).get(), resp.content_ready().get()), std::exception);
207207
}
208208

209-
TEST_FIXTURE(uri_address, response_stream_large_file_stream, "Ignore:Windows", "314")
209+
// CodePlex 314
210+
#if !defined(_MSC_VER) || _MSC_VER < 1900
211+
TEST_FIXTURE(uri_address, response_stream_large_file_stream)
210212
{
211213
// Send a 100 KB data in the response body, the server will send this in multiple chunks
212214
// This data will get sent with content-length
@@ -249,6 +251,7 @@ TEST_FIXTURE(uri_address, response_stream_large_file_stream, "Ignore:Windows", "
249251
fistream.close().get();
250252
}
251253
}
254+
#endif
252255

253256
#if !defined(__cplusplus_winrt)
254257

@@ -364,6 +367,8 @@ TEST_FIXTURE(uri_address, content_ready)
364367
listener.close().wait();
365368
}
366369

370+
// CodePlex 314
371+
#if !defined(_MSC_VER) || _MSC_VER < 1900
367372
TEST_FIXTURE(uri_address, xfer_chunked_with_length)
368373
{
369374
http_client client(m_uri);
@@ -441,6 +446,7 @@ TEST_FIXTURE(uri_address, get_resp_stream)
441446

442447
listener.close().wait();
443448
}
449+
#endif
444450

445451
TEST_FIXTURE(uri_address, xfer_chunked_multiple_chunks)
446452
{

0 commit comments

Comments
 (0)