Chromium Code Reviews| Index: slave/skia_slave_scripts/chromeos_postrender.py |
| diff --git a/slave/skia_slave_scripts/chromeos_postrender.py b/slave/skia_slave_scripts/chromeos_postrender.py |
| index 336d830bc7c718451ea85f0d247766d33417b589..ec5323e104feb2efe75610360bc2a1499c0d020a 100644 |
| --- a/slave/skia_slave_scripts/chromeos_postrender.py |
| +++ b/slave/skia_slave_scripts/chromeos_postrender.py |
| @@ -39,6 +39,14 @@ class ChromeOSPostRender(ChromeOSBuildStep, PostRender): |
| ssh_utils.RunSSH(self._ssh_username, self._ssh_host, self._ssh_port, |
| ['rm', '-rf', self._device_dirs.SKPOutDir()]) |
| + # Copy skimage results and remove them from the device. |
| + ssh_utils.GetSCP(self._skimage_out_dir, self._device_dirs.SKImageOutDir(), |
|
scroggo
2013/06/24 17:43:16
The chrome steps are also untested, but mimic simi
|
| + self._ssh_username, self._ssh_host, self._ssh_port, |
| + recurse=True) |
| + |
| + ssh_utils.RunSSH(self._ssh_username, self._ssh_host, self._ssh_port, |
| + ['rm', '-rf', self._device_dirs.SKImageOutDir()]) |
| + |
| if '__main__' == __name__: |
| sys.exit(BuildStep.RunBuildStep(ChromeOSPostRender)) |