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': |