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

Unified Diff: content/browser/frame_host/interstitial_page_impl_browsertest.cc

Issue 1211183003: [MemSheriff] Suppress uninit read in clipboard msg for Dr. Memory + msan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | tools/valgrind/drmemory/suppressions_full.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/interstitial_page_impl_browsertest.cc
diff --git a/content/browser/frame_host/interstitial_page_impl_browsertest.cc b/content/browser/frame_host/interstitial_page_impl_browsertest.cc
index a1d69fdae3717173bef55721cd22cb77dedbb3d2..623e8c23904d00fb8240ddc1407e73d7e1c30c42 100644
--- a/content/browser/frame_host/interstitial_page_impl_browsertest.cc
+++ b/content/browser/frame_host/interstitial_page_impl_browsertest.cc
@@ -349,7 +349,14 @@ IN_PROC_BROWSER_TEST_F(InterstitialPageImplTest, Copy) {
TearDownInterstitialPage();
}
-IN_PROC_BROWSER_TEST_F(InterstitialPageImplTest, Paste) {
+// Failing on msan bot: crbug.com/506921
+#if defined(MEMORY_SANITIZER)
+#define MAYBE_Paste DISABLED_Paste
+#else
+#define MAYBE_Paste Paste
+#endif
+
+IN_PROC_BROWSER_TEST_F(InterstitialPageImplTest, MAYBE_Paste) {
SetUpTestClipboard();
SetUpInterstitialPage();
« no previous file with comments | « no previous file | tools/valgrind/drmemory/suppressions_full.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698