Commit 521ccbb8 authored by jdoerrie's avatar jdoerrie Committed by Commit Bot

Disable Flaky OOM tests on Android

TBR=csharrison

Bug: 819592
Change-Id: Ibe928fa90db3d840a8c8adb6e8b1da97e8c7a58e
Reviewed-on: https://chromium-review.googlesource.com/951770Reviewed-by: default avatarJan Wilken Dörrie <jdoerrie@chromium.org>
Reviewed-by: default avatarCharlie Harrison <csharrison@chromium.org>
Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org>
Cr-Commit-Position: refs/heads/master@{#541428}
parent 4b9b7a7f
...@@ -198,7 +198,14 @@ TEST_F(OutOfMemoryReporterTest, NormalCrash_NoOOM) { ...@@ -198,7 +198,14 @@ TEST_F(OutOfMemoryReporterTest, NormalCrash_NoOOM) {
EXPECT_EQ(0u, entries.size()); EXPECT_EQ(0u, entries.size());
} }
TEST_F(OutOfMemoryReporterTest, SubframeNavigation_IsNotLogged) { // Flaky on Android: http://crbug.com/819592
#if defined(OS_ANDROID)
#define MAYBE_SubframeNavigation_IsNotLogged \
DISABLED_SubframeNavigation_IsNotLogged
#else
#define MAYBE_SubframeNavigation_IsNotLogged SubframeNavigation_IsNotLogged
#endif
TEST_F(OutOfMemoryReporterTest, MAYBE_SubframeNavigation_IsNotLogged) {
const GURL url("https://example.test/"); const GURL url("https://example.test/");
NavigateAndCommit(url); NavigateAndCommit(url);
...@@ -215,7 +222,13 @@ TEST_F(OutOfMemoryReporterTest, SubframeNavigation_IsNotLogged) { ...@@ -215,7 +222,13 @@ TEST_F(OutOfMemoryReporterTest, SubframeNavigation_IsNotLogged) {
CheckUkmMetricRecorded(url, 3000); CheckUkmMetricRecorded(url, 3000);
} }
TEST_F(OutOfMemoryReporterTest, OOMOnPreviousPage) { // Flaky on Android: http://crbug.com/819592
#if defined(OS_ANDROID)
#define MAYBE_OOMOnPreviousPage DISABLED_OOMOnPreviousPage
#else
#define MAYBE_OOMOnPreviousPage OOMOnPreviousPage
#endif
TEST_F(OutOfMemoryReporterTest, MAYBE_OOMOnPreviousPage) {
const GURL url1("https://example.test1/"); const GURL url1("https://example.test1/");
const GURL url2("https://example.test2/"); const GURL url2("https://example.test2/");
const GURL url3("https://example.test2/"); const GURL url3("https://example.test2/");
......
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