Skip to content

Commit

Permalink
Merge pull request swiftlang#2995 from kavon/disable-flaky-test
Browse files Browse the repository at this point in the history
mark two tests as flaky
  • Loading branch information
kavon authored Apr 1, 2021
2 parents 1168239 + fb32aea commit eec4b26
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Tests/Foundation/Tests/TestURLSession.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1836,8 +1836,8 @@ class TestURLSession: LoopbackServerTest {
("test_httpRedirectionWithDefaultPort", test_httpRedirectionWithDefaultPort),
("test_httpRedirectionWithEncodedQuery", test_httpRedirectionWithEncodedQuery),
("test_httpRedirectionTimeout", test_httpRedirectionTimeout),
("test_httpRedirectionChainInheritsTimeoutInterval", test_httpRedirectionChainInheritsTimeoutInterval),
("test_httpRedirectionExceededMaxRedirects", test_httpRedirectionExceededMaxRedirects),
/* ⚠️ */ ("test_httpRedirectionChainInheritsTimeoutInterval", testExpectedToFail(test_httpRedirectionChainInheritsTimeoutInterval, "Flaky on Linux CI: https://bugs.swift.org/browse/SR-14433")),
/* ⚠️ */ ("test_httpRedirectionExceededMaxRedirects", testExpectedToFail(test_httpRedirectionExceededMaxRedirects, "Flaky on Linux CI: https://bugs.swift.org/browse/SR-14433")),
("test_willPerformRedirect", test_willPerformRedirect),
("test_httpNotFound", test_httpNotFound),
/* ⚠️ */ ("test_http0_9SimpleResponses", testExpectedToFail(test_http0_9SimpleResponses, "Breaks on Ubunut20.04")),
Expand Down Expand Up @@ -2409,4 +2409,3 @@ extension HTTPUploadDelegate: URLSessionDataDelegate {
callbacks.append(#function)
}
}

0 comments on commit eec4b26

Please sign in to comment.