Commit 45a78cec authored by Justin Donnelly's avatar Justin Donnelly Committed by Commit Bot

Disable flaky FeedbackTest.ShowFeedback on ASan

Bug: 757243
Change-Id: Iba827221e50dea80eeeabb341d1af6067cdb249a
Reviewed-on: https://chromium-review.googlesource.com/747046Reviewed-by: default avatarAhmed Fakhry <afakhry@chromium.org>
Commit-Queue: Justin Donnelly <jdonnelly@chromium.org>
Cr-Commit-Position: refs/heads/master@{#512903}
parent 6fd62f38
...@@ -85,7 +85,14 @@ class FeedbackTest : public ExtensionBrowserTest { ...@@ -85,7 +85,14 @@ class FeedbackTest : public ExtensionBrowserTest {
} }
}; };
IN_PROC_BROWSER_TEST_F(FeedbackTest, ShowFeedback) { // Disabled for ASan due to flakiness on Mac ASan 64 Tests (1).
// See crbug.com/757243.
#if defined(ADDRESS_SANITIZER)
#define MAYBE_ShowFeedback DISABLED_ShowFeedback
#else
#define MAYBE_ShowFeedback ShowFeedback
#endif
IN_PROC_BROWSER_TEST_F(FeedbackTest, MAYBE_ShowFeedback) {
WaitForExtensionViewsToLoad(); WaitForExtensionViewsToLoad();
ASSERT_TRUE(IsFeedbackAppAvailable()); ASSERT_TRUE(IsFeedbackAppAvailable());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment