Commit a5f4b6fa authored by Matthew Cary's avatar Matthew Cary Committed by Commit Bot

Disable tests failing with OOM on asan.

The following were disabled:
RenderViewBrowserTest.ConfirmCacheInformationPlumbed
IndexedDBBrowserTestSingleProcess.RenderThreadShutdownTest

Based in information from
https://uberchromegw.corp.google.com/i/internal.client.clank/builders/asan-clang-phone

Bug: 788788
Change-Id: I2f4c0f9873c1aafc17249a01eb37d4c9ff4434f3
TBR: primiano@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/803341Reviewed-by: default avatarMatthew Cary <mattcary@chromium.org>
Commit-Queue: Matthew Cary <mattcary@chromium.org>
Cr-Commit-Position: refs/heads/master@{#520916}
parent 1b1dc993
...@@ -859,8 +859,14 @@ class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest { ...@@ -859,8 +859,14 @@ class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest {
} }
}; };
// https://crbug.com/788788
#if defined(OS_ANDROID) && defined(ADDRESS_SANITIZER)
#define MAYBE_RenderThreadShutdownTest DISABLED_RenderThreadShutdownTest
#else
#define MAYBE_RenderThreadShutdownTest RenderThreadShutdownTest
#endif // defined(OS_ANDROID) && defined(ADDRESS_SANITIZER)
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess,
RenderThreadShutdownTest) { MAYBE_RenderThreadShutdownTest) {
SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html"));
} }
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "base/callback.h" #include "base/callback.h"
#include "base/command_line.h" #include "base/command_line.h"
#include "base/strings/utf_string_conversions.h" #include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "content/public/browser/browser_context.h" #include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h" #include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_frame_host.h" #include "content/public/browser/render_frame_host.h"
...@@ -195,7 +196,15 @@ class RenderViewBrowserTest : public ContentBrowserTest { ...@@ -195,7 +196,15 @@ class RenderViewBrowserTest : public ContentBrowserTest {
TestShellContentRendererClient* renderer_client_; TestShellContentRendererClient* renderer_client_;
}; };
IN_PROC_BROWSER_TEST_F(RenderViewBrowserTest, ConfirmCacheInformationPlumbed) { // https://crbug.com/788788
#if defined(OS_ANDROID) && defined(ADDRESS_SANITIZER)
#define MAYBE_ConfirmCacheInformationPlumbed \
DISABLED_ConfirmCacheInformationPlumbed
#else
#define MAYBE_ConfirmCacheInformationPlumbed ConfirmCacheInformationPlumbed
#endif // defined(OS_ANDROID) && defined(ADDRESS_SANITIZER)
IN_PROC_BROWSER_TEST_F(RenderViewBrowserTest,
MAYBE_ConfirmCacheInformationPlumbed) {
ASSERT_TRUE(embedded_test_server()->Start()); ASSERT_TRUE(embedded_test_server()->Start());
// Load URL with "nocache" set, to create stale cache. // Load URL with "nocache" set, to create stale cache.
......
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