Skip to content

Commit e8b12e9

Browse files
committed
Disabled test progress_handler_tests:data_upload_exception
1 parent 4f1b6b7 commit e8b12e9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Release/tests/Functional/http/client/progress_handler_tests.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,15 +361,17 @@ TEST_FIXTURE(uri_address, download_nobody_exception)
361361
VERIFY_THROWS(client.request(msg).get().content_ready().get(), std::invalid_argument);
362362
}
363363

364-
TEST_FIXTURE(uri_address, data_upload_exception)
364+
TEST_FIXTURE(uri_address, data_upload_exception,
365+
"Ignore:Linux", "898953",
366+
"Ignore:Apple", "898953")
365367
{
366368
test_http_server::scoped_server scoped(m_uri);
367369
http_client client(m_uri);
368370
http_request msg(methods::PUT);
369371
msg.set_body(U("A"));
370372

371373
msg.set_progress_handler([&](message_direction::direction, utility::size64_t)
372-
{
374+
{
373375
throw std::invalid_argument("fake error");
374376
});
375377

0 commit comments

Comments
 (0)