| Index: base/debug/stack_trace_unittest.cc
|
| diff --git a/base/debug/stack_trace_unittest.cc b/base/debug/stack_trace_unittest.cc
|
| index e8e1e19f2ac2864058fb73a6cbd11d467285a3e4..ce5f3136eb1d99ba2f38f3b2cd403bfc05d41a73 100644
|
| --- a/base/debug/stack_trace_unittest.cc
|
| +++ b/base/debug/stack_trace_unittest.cc
|
| @@ -14,8 +14,13 @@ namespace debug {
|
|
|
| // Note: On Linux, this test currently only fully works on Debug builds.
|
| // See comments in the #ifdef soup if you intend to change this.
|
| -// Flaky, crbug.com/32070.
|
| -TEST(StackTrace, FLAKY_OutputToStream) {
|
| +#if defined(OS_WIN)
|
| +// Always fails on Windows: crbug.com/32070
|
| +#define MAYBE_OutputToStream FAILS_OutputToStream
|
| +#else
|
| +#define MAYBE_OutputToStream OutputToStream
|
| +#endif
|
| +TEST(StackTrace, MAYBE_OutputToStream) {
|
| StackTrace trace;
|
|
|
| // Dump the trace into a string.
|
|
|