| Index: base/debug/stack_trace_unittest.cc
|
| diff --git a/base/debug/stack_trace_unittest.cc b/base/debug/stack_trace_unittest.cc
|
| index d2901815725c6187beaa159cbeb847699369a1b5..42c662864170f7e01c808cff03d015d6a4d1c7d5 100644
|
| --- a/base/debug/stack_trace_unittest.cc
|
| +++ b/base/debug/stack_trace_unittest.cc
|
| @@ -126,7 +126,13 @@ TEST_F(StackTraceTest, DebugOutputToStream) {
|
| }
|
|
|
| // The test is used for manual testing, e.g., to see the raw output.
|
| -TEST_F(StackTraceTest, DebugPrintBacktrace) {
|
| +// Android implementation crashes due to SIGSTKFLT http://crbug.com/248775
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_DebugPrintBacktrace DISABLED_DebugPrintBacktrace
|
| +#else
|
| +#define MAYBE_DebugPrintBacktrace DebugPrintBacktrace
|
| +#endif
|
| +TEST_F(StackTraceTest, MAYBE_DebugPrintBacktrace) {
|
| StackTrace().PrintBacktrace();
|
| }
|
|
|
|
|