Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1651)

Unified Diff: webkit/fileapi/file_writer_delegate_unittest.cc

Issue 10383295: Disable FileWriterDelegateTest.WriteSuccessWithoutQuotaLimitConcurrent, which has been flaky on Win… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_writer_delegate_unittest.cc
diff --git a/webkit/fileapi/file_writer_delegate_unittest.cc b/webkit/fileapi/file_writer_delegate_unittest.cc
index 1ff0e83d2b3b03b94782e01044da5a2d3b71b7c0..e64a65748abeb0fe85e4ec69762cdcc6ec096675 100644
--- a/webkit/fileapi/file_writer_delegate_unittest.cc
+++ b/webkit/fileapi/file_writer_delegate_unittest.cc
@@ -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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698