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

Unified Diff: content/child/child_discardable_shared_memory_manager_browsertest.cc

Issue 944653002: Disable flaky ChildDiscardableSharedMemoryManagerBrowserTest.LockMemory on windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: content/child/child_discardable_shared_memory_manager_browsertest.cc
diff --git a/content/child/child_discardable_shared_memory_manager_browsertest.cc b/content/child/child_discardable_shared_memory_manager_browsertest.cc
index 3c557082cb1a59f0953f70d17dee644d172681d6..1ffa01ef7a0093fd5e546600dd1c9104346de2c2 100644
--- a/content/child/child_discardable_shared_memory_manager_browsertest.cc
+++ b/content/child/child_discardable_shared_memory_manager_browsertest.cc
@@ -50,8 +50,14 @@ class ChildDiscardableSharedMemoryManagerBrowserTest
}
};
+#if defined(OS_WIN)
+#define MAYBE_LockMemory DISABLED_LockMemory
+#else
+#define MAYBE_LockMemory LockMemory
+#endif
+
IN_PROC_BROWSER_TEST_F(ChildDiscardableSharedMemoryManagerBrowserTest,
- LockMemory) {
+ MAYBE_LockMemory) {
const size_t kSize = 1024 * 1024; // 1MiB.
NavigateToURL(shell(), GURL(url::kAboutBlankURL));
« 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