Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Unified Diff: slave/skia_slave_scripts/chromeos_build_step.py

Issue 16226005: Run skimage on the bots. (Closed) Base URL: https://skia.googlecode.com/svn/buildbot
Patch Set: Respond to comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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',

Powered by Google App Engine
This is Rietveld 408576698