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

Unified Diff: buildbot/slave/skia_slave_scripts/bench_pictures.py

Issue 26592010: Changes bench to output with git hash filename; cleans up bench_graph_svg to only handle bench aler… (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: Created 7 years, 2 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 | « no previous file | buildbot/slave/skia_slave_scripts/check_for_regressions.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/slave/skia_slave_scripts/bench_pictures.py
===================================================================
--- buildbot/slave/skia_slave_scripts/bench_pictures.py (revision 11761)
+++ buildbot/slave/skia_slave_scripts/bench_pictures.py (working copy)
@@ -6,7 +6,7 @@
""" Run the Skia bench_pictures executable. """
from build_step import BuildStep
-from run_bench import BenchArgs, GetSvnRevision
+from run_bench import BenchArgs
import os
import sys
@@ -22,7 +22,7 @@
# pylint: disable=W0221
def _BuildDataFile(self, args):
- filename = '_'.join(['bench', 'r%s' % GetSvnRevision(self._got_revision),
+ filename = '_'.join(['bench', self._got_revision,
'data', 'skp'] + args)
full_path = os.path.join(self._device_dirs.PerfDir(),
filename.replace('-', '').replace(':', '-'))
« no previous file with comments | « no previous file | buildbot/slave/skia_slave_scripts/check_for_regressions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698