Skip to content

Commit df76da2

Browse files
committed
Shifted bug assignments for linux and enabled tests for resolved bugs.
1 parent 0ea0580 commit df76da2

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace tests { namespace functional { namespace http { namespace client {
5050
SUITE(authentication_tests)
5151
{
5252

53-
TEST_FIXTURE(uri_address, auth_no_data, "Ignore:Linux", "646268", "Ignore:Apple", "646268")
53+
TEST_FIXTURE(uri_address, auth_no_data, "Ignore:Linux", "698420", "Ignore:Apple", "698420")
5454
{
5555
test_http_server::scoped_server scoped(m_uri);
5656
http_client_config client_config;
@@ -131,7 +131,7 @@ TEST_FIXTURE(uri_address, proxy_auth_known_contentlength, "Ignore:Linux", "64626
131131
#endif
132132

133133
TEST_FIXTURE(uri_address, proxy_auth_noseek,
134-
"Ignore:Linux", "627612",
134+
"Ignore:Linux", "646268",
135135
"Ignore:Apple", "646268")
136136
{
137137
web::http::uri uri(U("http://localhost:34567/"));
@@ -600,7 +600,7 @@ TEST_FIXTURE(uri_address, set_user_options_exceptions)
600600
#pragma endregion
601601

602602
// Fix for 522831 AV after failed authentication attempt
603-
TEST_FIXTURE(uri_address, failed_authentication_attempt, "Ignore:Linux", "549349", "Ignore:Apple", "646268")
603+
TEST_FIXTURE(uri_address, failed_authentication_attempt, "Ignore:Linux", "698420", "Ignore:Apple", "698420")
604604
{
605605
http_client_config config;
606606
credentials cred(U("user"),U("schmuser"));

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace tests { namespace functional { namespace http { namespace listener {
2929
SUITE(connections_and_errors)
3030
{
3131

32-
TEST_FIXTURE(uri_address, close_listener_race, "Ignore:Linux", "724744", "Ignore", "825350")
32+
TEST_FIXTURE(uri_address, close_listener_race, "Ignore", "825350")
3333
{
3434
::http::experimental::listener::http_listener listener(m_uri);
3535
listener.open().wait();
@@ -284,12 +284,14 @@ int verify_http_exception(Func f)
284284
return errorCode;
285285
}
286286

287-
TEST_FIXTURE(uri_address, request_content_ready_timeout, "Ignore:Linux", "NYI", "Ignore:Apple", "NYI")
287+
TEST_FIXTURE(uri_address, request_content_ready_timeout, "Ignore:Linux", "Unsuitable until 813276", "Ignore:Apple", "Unsuitable until 813276")
288288
{
289289
http_listener_config config;
290290
config.set_timeout(utility::seconds(1));
291+
291292
http_listener listener(m_uri, config);
292293
pplx::extensibility::event_t timedOutEvent;
294+
293295
listener.support([&](http_request req)
294296
{
295297
const int e1 = verify_http_exception([=](){ req.content_ready().wait(); });

Release/tests/Functional/http/listener/listener_construction_tests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ TEST_FIXTURE(uri_address, default_constructor)
3535
VERIFY_THROWS(listener.open().wait(), std::invalid_argument);
3636
}
3737

38-
TEST_FIXTURE(uri_address, move_operations, "Ignore:Linux", "724744")
38+
TEST_FIXTURE(uri_address, move_operations)
3939
{
4040
http_listener listener(m_uri);
4141
listener.open().wait();
@@ -69,7 +69,7 @@ TEST_FIXTURE(uri_address, move_operations, "Ignore:Linux", "724744")
6969
}).wait();
7070
}
7171

72-
TEST_FIXTURE(uri_address, various_uris, "Ignore:Linux", "724744")
72+
TEST_FIXTURE(uri_address, various_uris)
7373
{
7474
http_listener listener(web::http::uri_builder(m_uri).append_path(U("path1")).to_uri());
7575
listener.open().wait();
@@ -108,7 +108,7 @@ TEST_FIXTURE(uri_address, various_uris, "Ignore:Linux", "724744")
108108
}).wait();
109109
}
110110

111-
TEST_FIXTURE(uri_address, uri_routing, "Ignore:Linux", "724744")
111+
TEST_FIXTURE(uri_address, uri_routing)
112112
{
113113
http_listener listener1(web::http::uri_builder(m_uri).append_path(U("path1")).to_uri());
114114
listener1.open().wait();

Release/tests/Functional/http/listener/request_handler_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ TEST_FIXTURE(uri_address, async_request_handler)
215215
}
216216

217217

218-
TEST_FIXTURE(uri_address, multiple_listeners, "Ignore:Linux", "724744")
218+
TEST_FIXTURE(uri_address, multiple_listeners)
219219
{
220220
http_listener listener1(U("http://localhost:45678/path1"));
221221
http_listener listener2(U("http://localhost:45678/path1/path2"));
@@ -280,7 +280,7 @@ TEST_FIXTURE(uri_address, multiple_listeners, "Ignore:Linux", "724744")
280280
listener1.close().wait();
281281
}
282282

283-
TEST_FIXTURE(uri_address, unregister_while_processing, "Ignore:Linux", "724744")
283+
TEST_FIXTURE(uri_address, unregister_while_processing)
284284
{
285285
http_listener listener1(U("http://localhost:45679/path1"));
286286
http_listener listener2(U("http://localhost:45679/path1/path2"));

Release/tests/Functional/http/listener/request_stream_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace tests { namespace functional { namespace http { namespace listener {
2828
SUITE(request_stream_tests)
2929
{
3030

31-
TEST_FIXTURE(uri_address, large_body, "Ignore:Linux", "712252", "Ignore:Apple", "712252")
31+
TEST_FIXTURE(uri_address, large_body)
3232
{
3333
http_listener listener(m_uri);
3434
listener.open().wait();

Release/tests/Functional/utils/base64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ TEST(additional_decode)
221221
}
222222
}
223223

224-
TEST(bad_decode, "Ignore:Linux", "glib does not reject any of these inputs")
224+
TEST(bad_decode)
225225
{
226226
// These tests are for input that should be disallowed by a very strict decoder, but
227227
// the available APIs on Windows accept them, as does glib, which is used on Linux.

0 commit comments

Comments
 (0)