Index: slave/skia_slave_scripts/chromeos_build_step.py |
diff --git a/slave/skia_slave_scripts/chromeos_build_step.py b/slave/skia_slave_scripts/chromeos_build_step.py |
index dbb2c007914fe6cc826b023c2ff6ee4d55c362dd..2dfb0988953a1dd1e512bf1a99f96b6eb1d408a7 100644 |
--- a/slave/skia_slave_scripts/chromeos_build_step.py |
+++ b/slave/skia_slave_scripts/chromeos_build_step.py |
@@ -46,6 +46,10 @@ class ChromeOSBuildStep(BuildStep): |
ssh_utils.PutSCP(src, dst, self._ssh_username, self._ssh_host, |
self._ssh_port) |
+ def DevicePathExists(self, path): |
+ """ Overrides build_step.DevicePathExists() """ |
+ return posixpath.exists(path) |
borenet
2013/06/26 18:47:31
Again, this won't work because it's on the host si
scroggo
2013/06/26 20:07:08
Done.
|
+ |
def DevicePathJoin(self, *args): |
""" Overrides build_step.DevicePathJoin() """ |
return posixpath.sep.join(args) |
@@ -79,6 +83,10 @@ class ChromeOSBuildStep(BuildStep): |
gm_actual_dir=prefix + 'gm_actual', |
gm_expected_dir=prefix + 'gm_expected', |
resource_dir=prefix + 'resources', |
+ skimage_in_dir=prefix + 'skimage_in', |
+ skimage_expected_dir=(prefix |
+ + 'skimage_expected'), |
+ skimage_out_dir=prefix + 'skimage_out', |
skp_dir=prefix + 'skp', |
skp_perf_dir=prefix + 'skp_perf', |
skp_out_dir=prefix + 'skp_out', |