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

Unified Diff: slave/skia_slave_scripts/install.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
« no previous file with comments | « slave/skia_slave_scripts/download_skimage_files.py ('k') | slave/skia_slave_scripts/run_decoding_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave/skia_slave_scripts/install.py
diff --git a/slave/skia_slave_scripts/install.py b/slave/skia_slave_scripts/install.py
index 4c5f54146953c38d234d9c2a3ecd7aeed525d6ca..92854d28ada272300b5002884b14a3803040fe58 100644
--- a/slave/skia_slave_scripts/install.py
+++ b/slave/skia_slave_scripts/install.py
@@ -42,6 +42,19 @@ class Install(BuildStep):
# Initialize a clean scratch directory.
self.CreateCleanDirectory(self._device_dirs.TmpDir())
+ # Copy expectations file and images to decode in skimage to device.
+ self.CopyDirectoryContentsToDevice(self._skimage_expected_dir,
+ self._device_dirs.SKImageExpectedDir())
+
+ self.CopyDirectoryContentsToDevice(self._skimage_in_dir,
+ self._device_dirs.SKImageInDir())
+
+ # Create an out directory locally for android builds, so the files can be
+ # copied back to the master
+ self.CreateCleanDirectory(self._skimage_out_dir)
scroggo 2013/06/25 22:23:16 Oops. I wanted to create a clean local directory o
+
+ # Create a directory for the output of skimage
+ self.CreateCleanDirectory(self._device_dirs.SKImageOutDir())
if '__main__' == __name__:
sys.exit(BuildStep.RunBuildStep(Install))
« no previous file with comments | « slave/skia_slave_scripts/download_skimage_files.py ('k') | slave/skia_slave_scripts/run_decoding_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698