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

Unified Diff: tracing/bin/symbolize_trace

Issue 2950723002: Add an end-to-end test for symbolize_trace on macOS. (Closed)
Patch Set: lint Created 3 years, 6 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
Index: tracing/bin/symbolize_trace
diff --git a/tracing/bin/symbolize_trace b/tracing/bin/symbolize_trace
index 8957d1ca5a33404759e56ee8388f92cfd0dcac91..36dcdb8eff00b26e8c52e1228bac158212f57302 100755
--- a/tracing/bin/symbolize_trace
+++ b/tracing/bin/symbolize_trace
@@ -8,8 +8,6 @@ import sys
if __name__ == '__main__':
tracing_path = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
- symbolizer_path = os.path.join(tracing_path, 'tracing', 'extras',
- 'symbolizer')
- sys.path.append(symbolizer_path)
- import symbolize_trace
+ sys.path.append(tracing_path)
+ from tracing.extras.symbolizer import symbolize_trace
sys.exit(symbolize_trace.main(sys.argv[1:]))
« no previous file with comments | « tracing/bin/run_symbolizer_tests ('k') | tracing/tracing/extras/symbolizer/data/mac_trace_v1_postsymbolization.json.gz.sha1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698