Commit 0fc4d4da authored by Xing Liu's avatar Xing Liu Committed by Commit Bot

Disable a flaky ParallelDownloadTest on ChromeOS.

Disable ParallelDownloadTest.ResumptionLastSliceFinished because it's
flaky on ChromeOS.

TBR=dtrainor@chromium.org, qinmin@chromium.org

Bug: 822450
Change-Id: I90d737a8397a453af90288d05c7dc6bd8eefe23f
Reviewed-on: https://chromium-review.googlesource.com/965569Reviewed-by: default avatarMin Qin <qinmin@chromium.org>
Commit-Queue: Xing Liu <xingliu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#543742}
parent 46765230
...@@ -3155,7 +3155,14 @@ IN_PROC_BROWSER_TEST_F(ParallelDownloadTest, Resumption) { ...@@ -3155,7 +3155,14 @@ IN_PROC_BROWSER_TEST_F(ParallelDownloadTest, Resumption) {
// Verifies that if the last slice is finished, parallel download resumption // Verifies that if the last slice is finished, parallel download resumption
// can complete. // can complete.
IN_PROC_BROWSER_TEST_F(ParallelDownloadTest, ResumptionLastSliceFinished) { #if defined(OS_CHROMEOS)
// Failing on ChromeOS: https://crbug.com/822450
#define MAYBE_ResumptionLastSliceFinished DISABLED_ResumptionLastSliceFinished
#else
#define MAYBE_ResumptionLastSliceFinished ResumptionLastSliceFinished
#endif
IN_PROC_BROWSER_TEST_F(ParallelDownloadTest,
MAYBE_ResumptionLastSliceFinished) {
// Create the received slices data, last slice is actually finished. // Create the received slices data, last slice is actually finished.
std::vector<download::DownloadItem::ReceivedSlice> received_slices = { std::vector<download::DownloadItem::ReceivedSlice> received_slices = {
download::DownloadItem::ReceivedSlice(0, 1000), download::DownloadItem::ReceivedSlice(0, 1000),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment