| Index: slave/skia_slave_scripts/run_gm.py
|
| diff --git a/slave/skia_slave_scripts/run_gm.py b/slave/skia_slave_scripts/run_gm.py
|
| index d5eb6e8aa747724fa787f67a64d60dbab2fefb19..97efda9bbe686b2dfc68b64c7499b865e472df84 100644
|
| --- a/slave/skia_slave_scripts/run_gm.py
|
| +++ b/slave/skia_slave_scripts/run_gm.py
|
| @@ -7,6 +7,7 @@
|
|
|
| from build_step import BuildStep
|
| import build_step
|
| +import os
|
| import sys
|
|
|
|
|
| @@ -19,16 +20,16 @@
|
| timeout=timeout, no_output_timeout=no_output_timeout, **kwargs)
|
|
|
| def _Run(self):
|
| - output_dir = self._flavor_utils.DevicePathJoin(
|
| - self._device_dirs.GMActualDir(), self._builder_name)
|
| + output_dir = os.path.join(self._device_dirs.GMActualDir(),
|
| + self._builder_name)
|
| cmd = ['--verbose',
|
| '--writeChecksumBasedFilenames',
|
| # Don't bother writing out image files that match our expectations--
|
| # we know that previous runs have already uploaded those!
|
| '--mismatchPath', output_dir,
|
| '--missingExpectationsPath', output_dir,
|
| - '--writeJsonSummaryPath', self._flavor_utils.DevicePathJoin(
|
| - output_dir, JSON_SUMMARY_FILENAME),
|
| + '--writeJsonSummaryPath', os.path.join(output_dir,
|
| + JSON_SUMMARY_FILENAME),
|
| '--ignoreErrorTypes',
|
| 'IntentionallySkipped', 'MissingExpectations',
|
| 'ExpectationsMismatch',
|
|
|