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

Unified Diff: slave/skia_slave_scripts/chromeos_run_decoding_tests.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_run_decoding_tests.py
diff --git a/slave/skia_slave_scripts/chromeos_run_gm.py b/slave/skia_slave_scripts/chromeos_run_decoding_tests.py
similarity index 59%
copy from slave/skia_slave_scripts/chromeos_run_gm.py
copy to slave/skia_slave_scripts/chromeos_run_decoding_tests.py
index 7d80b692c64fbd9eef654d52592482192c73764d..7729f4c19f1a1745bebd9472d199d157d26f22da 100644
--- a/slave/skia_slave_scripts/chromeos_run_gm.py
+++ b/slave/skia_slave_scripts/chromeos_run_decoding_tests.py
@@ -3,17 +3,17 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-""" Run the Skia GM executable. """
+""" Run the Skia skimage executable. """
from build_step import BuildStep
from chromeos_build_step import ChromeOSBuildStep
-from run_gm import RunGM
+from run_decoding_tests import RunDecodingTests
import sys
-class ChromeOSRunGM(ChromeOSBuildStep, RunGM):
+class ChromeOSRunDecodingTests(ChromeOSBuildStep, RunDecodingTests):
pass
if '__main__' == __name__:
- sys.exit(BuildStep.RunBuildStep(ChromeOSRunGM))
+ sys.exit(BuildStep.RunBuildStep(ChromeOSRunDecodingTests))

Powered by Google App Engine
This is Rietveld 408576698