diff options
author | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 17:38:02 +0000 |
---|---|---|
committer | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 17:38:02 +0000 |
commit | 6d5bd9076a36b0e691e469cfc3fd9f478b769435 (patch) | |
tree | 8f149e986ab2eb1921fb0bbc96d118c37ef2fc58 /tools/run-bisect-perf-regression.py | |
parent | fdc98289333ccfd9cb192bfac9c39a8c580e278d (diff) | |
download | chromium_src-6d5bd9076a36b0e691e469cfc3fd9f478b769435.zip chromium_src-6d5bd9076a36b0e691e469cfc3fd9f478b769435.tar.gz chromium_src-6d5bd9076a36b0e691e469cfc3fd9f478b769435.tar.bz2 |
Output the config file in an annotated step so that it shows up on the waterfall. Might be useful to have this info right there on the waterfall/output when debugging broken bisects.
Example:
http://build.chromium.org/p/tryserver.chromium/builders/linux_perf_bisect/builds/439
BUG=306926
NOTRY=true
Review URL: https://codereview.chromium.org/35283003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230462 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/run-bisect-perf-regression.py')
-rwxr-xr-x | tools/run-bisect-perf-regression.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py index a34e088..e165fed 100755 --- a/tools/run-bisect-perf-regression.py +++ b/tools/run-bisect-perf-regression.py @@ -275,6 +275,12 @@ def _RunBisectionScript(config, working_directory, path_to_file, path_to_goma): Returns: 0 on success, otherwise 1. """ + bisect_utils.OutputAnnotationStepStart('Config') + print + for k, v in config.iteritems(): + print ' %s : %s' % (k, v) + print + bisect_utils.OutputAnnotationStepClosed() cmd = ['python', os.path.join(path_to_file, 'bisect-perf-regression.py'), '-c', config['command'], |