Skip to content

Commit d87d052

Browse files
committed
Disable two Linux tests
1 parent 572c265 commit d87d052

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ TEST_FIXTURE(uri_address, proxy_auth_known_contentlength, "Ignore:Linux", "no pr
117117
http_asserts::assert_response_equals(client.request(msg).get(), status_codes::OK);
118118
}
119119

120-
TEST_FIXTURE(uri_address, proxy_auth_noseek)
120+
TEST_FIXTURE(uri_address, proxy_auth_noseek,
121+
"Ignore:Linux", "627612")
121122
{
122123
test_http_server::scoped_server scoped(m_uri);
123124
http_client client(m_uri); // In this test, the request cannot be resent, so the username and password are not required

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ TEST_FIXTURE(uri_address, pending_requests_after_client)
8686
pending_requests_after_client_impl(m_uri, false);
8787
}
8888

89-
TEST_FIXTURE(uri_address, server_doesnt_exist)
89+
TEST_FIXTURE(uri_address, server_doesnt_exist,
90+
"Ignore:Linux", "627642")
9091
{
9192
http_client client(m_uri);
9293

@@ -101,7 +102,8 @@ TEST_FIXTURE(uri_address, server_doesnt_exist)
101102
}
102103
}
103104

104-
TEST_FIXTURE(uri_address, server_close_without_responding)
105+
TEST_FIXTURE(uri_address, server_close_without_responding,
106+
"Ignore:Linux", "627612")
105107
{
106108
test_http_server server(m_uri);
107109
VERIFY_ARE_EQUAL(0u, server.open());

0 commit comments

Comments
 (0)