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

Unified Diff: tracing/bin/compare_samples

Issue 2089833002: Entry point for bisect sample comparison. (Closed) Base URL: https://github.com/catapult-project/catapult.git@mann
Patch Set: Adding tests that pass Created 4 years, 5 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/compare_samples
diff --git a/tracing/bin/update_gypi b/tracing/bin/compare_samples
similarity index 67%
copy from tracing/bin/update_gypi
copy to tracing/bin/compare_samples
index 2c66ae1a38fbf029fd06ff2421025b480fe878d1..257285dfe02a36da889228c8bbdb7cdd41f1fd61 100755
--- a/tracing/bin/update_gypi
+++ b/tracing/bin/compare_samples
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -10,5 +10,5 @@ if __name__ == '__main__':
tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
'..'))
sys.path.append(tracing_path)
- from tracing_build import update_gypi
- sys.exit(update_gypi.Update())
+ from tracing.metrics import compare_samples
eakuefner 2016/07/21 19:35:34 I'm a little confused as to why we have both this,
RobertoCN 2016/09/02 21:19:30 The consensus was that one would only deal with co
+ sys.exit(compare_samples.Main(sys.argv))
« no previous file with comments | « no previous file | tracing/tracing/metrics/compare_samples.html » ('j') | tracing/tracing/metrics/compare_samples.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698