Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: tools/perf/core/stacktrace_unittest.py

Issue 1852393002: Fix stack symbolization in Telemetry on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable stacktrace_unittest on Windows again. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/chrome_telemetry_build/telemetry_binary_manager.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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):
« no previous file with comments | « tools/perf/chrome_telemetry_build/telemetry_binary_manager.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698