| 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"));
|
|
|