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

Unified Diff: webkit/fileapi/file_writer_delegate_unittest.cc

Issue 10411084: Disable FileWriterDelegateTest.WritesWithQuotaAndOffset, which has (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
===================================================================
--- webkit/fileapi/file_writer_delegate_unittest.cc (revision 138409)
+++ webkit/fileapi/file_writer_delegate_unittest.cc (working copy)
@@ -356,7 +356,16 @@
EXPECT_EQ(base::PLATFORM_FILE_OK, result2->status());
}
-TEST_F(FileWriterDelegateTest, WritesWithQuotaAndOffset) {
+#if defined(OS_WIN)
+// See http://crbug.com/129264
+#define MAYBE_WritesWithQuotaAndOffset \
+ DISABLED_WritesWithQuotaAndOffset
+#else
+#define MAYBE_WritesWithQuotaAndOffset \
+ WritesWithQuotaAndOffset
+#endif
+
+TEST_F(FileWriterDelegateTest, MAYBE_WritesWithQuotaAndOffset) {
const GURL kBlobURL("blob:failure-with-updated-quota");
content_ = kData;
« 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