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

Unified Diff: content/browser/in_process_webkit/dom_storage_uitest.cc

Issue 8500011: Mark two tests as fails, to unblock the commit queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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: content/browser/in_process_webkit/dom_storage_uitest.cc
diff --git a/content/browser/in_process_webkit/dom_storage_uitest.cc b/content/browser/in_process_webkit/dom_storage_uitest.cc
index 3c40d7bc748c419f294eedd79e01a45996323086..886941fe6f48c6e427b65cfdaff9860ff3855c8c 100644
--- a/content/browser/in_process_webkit/dom_storage_uitest.cc
+++ b/content/browser/in_process_webkit/dom_storage_uitest.cc
@@ -119,7 +119,14 @@ TEST_F(DOMStorageTest, FLAKY_EventLayoutTests) {
RunTests(kEventsFiles);
}
-TEST_F(DOMStorageTest, LocalStorageLayoutTests) {
+#if defined(OS_LINUX)
+// http://crbug.com/104872
+#define MAYBE_LocalStorageLayoutTests FAILS_LocalStorageLayoutTests
+#else
+#define MAYBE_LocalStorageLayoutTests LocalStorageLayoutTests
+#endif
+
+TEST_F(DOMStorageTest, MAYBE_LocalStorageLayoutTests) {
InitializeForLayoutTest(test_dir_, FilePath().AppendASCII("localstorage"),
kNoHttpPort);
AddJSTestResources();
@@ -128,7 +135,14 @@ TEST_F(DOMStorageTest, LocalStorageLayoutTests) {
RunTests(kStorageFiles);
}
-TEST_F(DOMStorageTest, SessionStorageLayoutTests) {
+#if defined(OS_LINUX)
+// http://crbug.com/104872
+#define MAYBE_SessionStorageLayoutTests FAILS_SessionStorageLayoutTests
+#else
+#define MAYBE_SessionStorageLayoutTests SessionStorageLayoutTests
+#endif
+
+TEST_F(DOMStorageTest, MAYBE_SessionStorageLayoutTests) {
InitializeForLayoutTest(test_dir_, FilePath().AppendASCII("sessionstorage"),
kNoHttpPort);
AddJSTestResources();
« 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