| Index: tools/perf/core/stacktrace_unittest.py
|
| diff --git a/tools/perf/core/stacktrace_unittest.py b/tools/perf/core/stacktrace_unittest.py
|
| index 7d2e15998ab45b15c273aa71e62326f2febfaa1e..7d63db1280e45deefe3507a9d8ffeb637bca2830 100644
|
| --- a/tools/perf/core/stacktrace_unittest.py
|
| +++ b/tools/perf/core/stacktrace_unittest.py
|
| @@ -9,7 +9,10 @@ from telemetry.testing import tab_test_case
|
|
|
| class TabStackTraceTest(tab_test_case.TabTestCase):
|
|
|
| - # TODO(dyen): For now this works on a mac & linux but continue to expand this.
|
| + # TODO(dyen): For now this doesn't work on Android but continue to
|
| + # expand this.
|
| + # TODO(kbr): this test doesn't work on the Windows Swarming bots
|
| + # yet. http://crbug.com/561763
|
| @decorators.Enabled('mac', 'linux')
|
| # Stack traces do not currently work on 10.6, but they are also being
|
| # disabled shortly so just disable it for now.
|
| @@ -20,8 +23,9 @@ class TabStackTraceTest(tab_test_case.TabTestCase):
|
| except exceptions.DevtoolsTargetCrashException as e:
|
| self.assertIn('Thread 0 (crashed)', '\n'.join(e.stack_trace))
|
|
|
| - # Currently stack traces do not work on windows: http://crbug.com/476110
|
| - # Linux stack traces depends on fission support: http://crbug.com/405623
|
| + # Stack traces aren't working on Android yet.
|
| + # TODO(kbr): this test doesn't work on the Windows Swarming bots
|
| + # yet. http://crbug.com/561763
|
| @decorators.Enabled('mac', 'linux')
|
| @decorators.Disabled('snowleopard')
|
| def testCrashSymbols(self):
|
|
|