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

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

Issue 2179353002: Disable some tests with errors under TSan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/service_worker/service_worker_browsertest.cc » ('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 b660e525807e0ec8f1c52b7ddd19315769576e9e..cc2ac142bf0a165aed11ab0455d8dc18efc86073 100644
--- a/content/browser/frame_host/interstitial_page_impl_browsertest.cc
+++ b/content/browser/frame_host/interstitial_page_impl_browsertest.cc
@@ -240,7 +240,13 @@ class InterstitialPageImplTest : public ContentBrowserTest {
DISALLOW_COPY_AND_ASSIGN(InterstitialPageImplTest);
};
-IN_PROC_BROWSER_TEST_F(InterstitialPageImplTest, Cut) {
+// Has errors on TSan. See https://crbug.com/631322.
+#if defined(THREAD_SANITIZER)
+#define MAYBE_Cut DISABLED_Cut
+#else
+#define MAYBE_Cut Cut
+#endif
+IN_PROC_BROWSER_TEST_F(InterstitialPageImplTest, MAYBE_Cut) {
SetUpInterstitialPage();
ASSERT_TRUE(CreateInputAndSetText("text-to-cut"));
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698