Chromium Code Reviews| Index: slave/skia_slave_scripts/run_decoding_tests.py |
| diff --git a/slave/skia_slave_scripts/run_decoding_tests.py b/slave/skia_slave_scripts/run_decoding_tests.py |
| index 1dc204c369a84b8f88c7862200ae8812a55ec186..d0d2db0ac55906d4175f7b0a834d9df8ba584f7c 100644 |
| --- a/slave/skia_slave_scripts/run_decoding_tests.py |
| +++ b/slave/skia_slave_scripts/run_decoding_tests.py |
| @@ -14,7 +14,8 @@ import sys |
| class RunDecodingTests(BuildStep): |
| def _Run(self): |
| - cmd = ['-r', self._device_dirs.SKImageInDir(), '--noreencode'] |
| + cmd = ['-r', self._device_dirs.SKImageInDir(), '--noreencode', |
| + '--writeChecksumBasedFilenames', '--config 8888'] |
|
epoger
2013/10/17 16:04:32
I don't know if this will work ('--config 8888' mi
scroggo
2013/10/18 14:36:07
Done.
|
| # Read expectations, which were downloaded/copied to the device. |
| # If this bot is a trybot, read the expected results of the waterfall bot. |
| @@ -36,8 +37,11 @@ class RunDecodingTests(BuildStep): |
| cmd.extend(['--createExpectationsPath', output_expectations_file]) |
| - # Draw any mismatches to the same folder as the output json. |
| - cmd.extend(['--mismatchPath', self._device_dirs.SKImageOutDir()]) |
| + # Draw any mismatches to a folder inside SKImageOutDir. |
| + image_out_dir = self._flavor_utils.DevicePathJoin( |
| + self._device_dirs.SKImageOutDir(), 'images') |
| + self._flavor_utils.CreateCleanDeviceDirectory(image_out_dir) |
| + cmd.extend(['--mismatchPath', image_out_dir]) |
| self._flavor_utils.RunFlavoredCmd('skimage', cmd) |