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

Unified Diff: slave/skia_slave_scripts/build_step.py

Issue 295753002: upload SKP renderings that did not match expectations (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 7 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: slave/skia_slave_scripts/build_step.py
diff --git a/slave/skia_slave_scripts/build_step.py b/slave/skia_slave_scripts/build_step.py
index 5339a8520542b8601527c2f386bdc5ec5b095834..18a3ac354be4db1262aa28b2f357f2a01284d4b2 100644
--- a/slave/skia_slave_scripts/build_step.py
+++ b/slave/skia_slave_scripts/build_step.py
@@ -202,7 +202,12 @@ class BuildStep(multiprocessing.Process):
else args['perf_output_basedir'])
self.skp_dir = self._local_playback_dirs.PlaybackSkpDir()
- self.skp_out_dir = self._local_playback_dirs.PlaybackImageResultsDir()
+ self.playback_actual_images_dir = (
+ self._local_playback_dirs.PlaybackActualImagesDir())
borenet 2014/05/19 21:04:38 So I never understood this - what's the deal with
epoger 2014/05/19 22:07:24 It was bugging me too as I wrote the CL, although
epoger 2014/05/20 19:02:48 Added a TODO above.
+ self.playback_actual_summaries_dir = (
+ self._local_playback_dirs.PlaybackActualSummariesDir())
+ self.playback_expected_summaries_dir = (
+ self._local_playback_dirs.PlaybackExpectedSummariesDir())
# Figure out where we are going to store performance related data.
if args['perf_output_basedir'] != 'None':

Powered by Google App Engine
This is Rietveld 408576698