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

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

Issue 19668009: Move gm-expected to trunk/expectations/gm , and modify scripts that use it. (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: add_master_files Created 7 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: buildbot/slave/skia_slave_scripts/build_step.py
===================================================================
--- buildbot/slave/skia_slave_scripts/build_step.py (revision 10285)
+++ buildbot/slave/skia_slave_scripts/build_step.py (working copy)
@@ -284,7 +284,7 @@
# Figure out where we are going to store images generated by GM.
self._gm_actual_basedir = os.path.join(os.pardir, os.pardir, 'gm', 'actual')
self._gm_merge_basedir = os.path.join(os.pardir, os.pardir, 'gm', 'merge')
- self._gm_expected_dir = os.path.join(os.pardir, 'gm-expected',
+ self._gm_expected_dir = os.path.join('expectations', 'gm',
self._gm_image_subdir)
self._gm_actual_dir = os.path.join(self._gm_actual_basedir,
self._gm_image_subdir)
@@ -340,8 +340,6 @@
# DIFFERENT directory than self._gm_expected.
# self._gm_expected : The SVN-managed directory on the buildbot host
# where canonical expectations are stored.
- # Currently, they are stored there as
- # individual image files.
# DeviceDirs.GMExpectedDir(): A temporary directory on the device we are
# testing, where the PreRender step will put
# an expected-results.json file that describes

Powered by Google App Engine
This is Rietveld 408576698