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

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

Issue 23120002: Remove base-* directories from gm expected/actual paths; just use platform names (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: apply_comments_from_patchset5 Created 7 years, 4 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: buildbot/slave/skia_slave_scripts/upload_gm_results.py
===================================================================
--- buildbot/slave/skia_slave_scripts/upload_gm_results.py (revision 10814)
+++ buildbot/slave/skia_slave_scripts/upload_gm_results.py (working copy)
@@ -82,12 +82,11 @@
merge_options.commit_message = 'UploadGMResults of r%s on %s' % (
self._got_revision, self._args['builder_name'])
# pylint: disable=W0201
- merge_options.dest_svn_url = '%s/%s/%s/%s' % (
- gm_actual_svn_baseurl, self._args['gm_image_subdir'],
- self._args['builder_name'], self._args['gm_image_subdir'])
+ merge_options.dest_svn_url = '%s/%s' % (
+ gm_actual_svn_baseurl, self._args['builder_name'])
# pylint: disable=W0201
merge_options.merge_dir_path = os.path.join(gm_merge_basedir,
- self._args['gm_image_subdir'])
+ self._args['builder_name'])
# Clear out the merge_dir, in case it has old imagefiles in it from the
# bad old days when we were still uploading actual images to skia-autogen.
# This resolves https://code.google.com/p/skia/issues/detail?id=1362 ('some
@@ -124,7 +123,7 @@
def _Run(self):
gm_output_dir = os.path.join(os.pardir, os.pardir, 'gm', 'actual',
- self._args['gm_image_subdir'])
+ self._args['builder_name'])
self._GSUploadAllImages(src_dir=gm_output_dir)
self._SVNUploadJsonFiles(src_dir=gm_output_dir)
« no previous file with comments | « buildbot/slave/skia_slave_scripts/run_gm.py ('k') | trunk/expectations/gm/base-android-galaxy-nexus/expected-results.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698