Commit 1aa13e51 authored by vandebo@chromium.org's avatar vandebo@chromium.org

Disable FileWriterDelegateTest.WriteSuccessWithoutQuotaLimitConcurrent, which...

Disable FileWriterDelegateTest.WriteSuccessWithoutQuotaLimitConcurrent, which has been flaky on Windows.

TBR=kinuko@chromium.org
BUG=129264
TEST=NONE

Review URL: https://chromiumcodereview.appspot.com/10383295

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138402 0039d316-1c4b-4281-b951-d872f2087c98
parent 9f4bd34d
......@@ -301,7 +301,16 @@ TEST_F(FileWriterDelegateTest, WriteZeroBytesSuccessfullyWithZeroQuota) {
EXPECT_TRUE(result_->complete());
}
TEST_F(FileWriterDelegateTest, WriteSuccessWithoutQuotaLimitConcurrent) {
#if defined(OS_WIN)
// See http://crbug.com/129264
#define MAYBE_WriteSuccessWithoutQuotaLimitConcurrent \
DISABLED_WriteSuccessWithoutQuotaLimitConcurrent
#else
#define MAYBE_WriteSuccessWithoutQuotaLimitConcurrent \
WriteSuccessWithoutQuotaLimitConcurrent
#endif
TEST_F(FileWriterDelegateTest, MAYBE_WriteSuccessWithoutQuotaLimitConcurrent) {
scoped_ptr<FileWriterDelegate> file_writer_delegate2;
scoped_ptr<net::URLRequest> request2;
scoped_ptr<Result> result2;
......
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