Commit 029a4964 authored by yutak's avatar yutak Committed by Commit bot

Disable DesktopEngagementServiceTest.TestTimeoutDiscount on Mac.

This test is flaky on Mac debug bot.

BUG=646758
TBR=gayane@chromium.org,asvitkine@chromium.org

Review-Url: https://codereview.chromium.org/2338213003
Cr-Commit-Position: refs/heads/master@{#418523}
parent 8642727a
......@@ -148,7 +148,13 @@ TEST(DesktopEngagementServiceTest, TestAudioEvent) {
histogram_tester.ExpectTotalCount("Session.TotalDuration", 1);
}
TEST(DesktopEngagementServiceTest, TestTimeoutDiscount) {
// Flaky on Mac Debug. See http://crbug.com/646758
#if defined(OS_MACOSX)
#define MAYBE_TestTimeoutDiscount DISABLED_TestTimeoutDiscount
#else
#define MAYBE_TestTimeoutDiscount TestTimeoutDiscount
#endif
TEST(DesktopEngagementServiceTest, MAYBE_TestTimeoutDiscount) {
base::MessageLoop loop(base::MessageLoop::TYPE_DEFAULT);
base::HistogramTester histogram_tester;
MockDesktopEngagementService instance;
......
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