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

Unified Diff: gm/rebaseline_server/compare_rendered_pictures.py

Issue 232103002: rebaseline_server: allow user to specify which builders to process (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: expose to command line Created 6 years, 8 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: gm/rebaseline_server/compare_rendered_pictures.py
diff --git a/gm/rebaseline_server/compare_rendered_pictures.py b/gm/rebaseline_server/compare_rendered_pictures.py
index 14b1fb1d809cf728449d7d066517821c87478c81..80a42e51f9b1e83c1481c93a7e268d4c7668a0bb 100755
--- a/gm/rebaseline_server/compare_rendered_pictures.py
+++ b/gm/rebaseline_server/compare_rendered_pictures.py
@@ -97,9 +97,9 @@ class RenderedPicturesComparisons(results.BaseComparisons):
'Reading actual-results JSON files from %s subdirs within %s...' % (
subdirs, actuals_root))
subdirA, subdirB = subdirs
- subdirA_builder_dicts = results.BaseComparisons._read_dicts_from_root(
+ subdirA_builder_dicts = self._read_dicts_from_root(
os.path.join(actuals_root, subdirA))
- subdirB_builder_dicts = results.BaseComparisons._read_dicts_from_root(
+ subdirB_builder_dicts = self._read_dicts_from_root(
os.path.join(actuals_root, subdirB))
logging.info('Comparing subdirs %s and %s...' % (subdirA, subdirB))

Powered by Google App Engine
This is Rietveld 408576698