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

Unified Diff: chrome/browser/resources/pdf/pdf_extension_test.cc

Issue 855323004: Exclude a couple of tests that fail under MSan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace crbug/448230 with crbug/445745 as the former was dup'ed against the latter Created 5 years, 11 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 | content/browser/media/webrtc_getusermedia_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/pdf/pdf_extension_test.cc
diff --git a/chrome/browser/resources/pdf/pdf_extension_test.cc b/chrome/browser/resources/pdf/pdf_extension_test.cc
index 2ba39addc1ea6106f4dba3b420a21fa8813ff46f..77e51719123288a2141012556d7438f6db6108e9 100644
--- a/chrome/browser/resources/pdf/pdf_extension_test.cc
+++ b/chrome/browser/resources/pdf/pdf_extension_test.cc
@@ -98,6 +98,12 @@ IN_PROC_BROWSER_TEST_F(PDFExtensionTest, Viewport) {
RunTestsInFile("viewport_test.js", "test.pdf");
}
-IN_PROC_BROWSER_TEST_F(PDFExtensionTest, Bookmark) {
+// Test fails under MSan, http://crbug.com/449995
+#if defined(MEMORY_SANITIZER)
+#define MAYBE_Bookmark DISABLED_Bookmark
+#else
+#define MAYBE_Bookmark Bookmark
+#endif
+IN_PROC_BROWSER_TEST_F(PDFExtensionTest, MAYBE_Bookmark) {
RunTestsInFile("bookmarks_test.js", "test-bookmarks.pdf");
}
« no previous file with comments | « no previous file | content/browser/media/webrtc_getusermedia_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698