| Index: content/browser/indexed_db/indexed_db_browsertest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| index 1e2325c196dc3b06e905fa71d58dbbc5b9650cf6..5a2389333516c899ec373d118fcb7d21d26a0aa6 100644
|
| --- a/content/browser/indexed_db/indexed_db_browsertest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| @@ -459,8 +459,14 @@ class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest {
|
| }
|
| };
|
|
|
| +// Crashing on Android due to kSingleProcess flag: http://crbug.com/342525
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_RenderThreadShutdownTest DISABLED_RenderThreadShutdownTest
|
| +#else
|
| +#define MAYBE_RenderThreadShutdownTest RenderThreadShutdownTest
|
| +#endif
|
| IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess,
|
| - RenderThreadShutdownTest) {
|
| + MAYBE_RenderThreadShutdownTest) {
|
| SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html"));
|
| }
|
|
|
|
|