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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ Run the Skia GM executable. """ 6 """ Run the Skia skimage executable. """
7 7
8 from build_step import BuildStep 8 from build_step import BuildStep
9 from chromeos_build_step import ChromeOSBuildStep 9 from chromeos_build_step import ChromeOSBuildStep
10 from run_gm import RunGM 10 from run_decoding_tests import RunDecodingTests
11 import sys 11 import sys
12 12
13 13
14 class ChromeOSRunGM(ChromeOSBuildStep, RunGM): 14 class ChromeOSRunDecodingTests(ChromeOSBuildStep, RunDecodingTests):
15 pass 15 pass
16 16
17 17
18 if '__main__' == __name__: 18 if '__main__' == __name__:
19 sys.exit(BuildStep.RunBuildStep(ChromeOSRunGM)) 19 sys.exit(BuildStep.RunBuildStep(ChromeOSRunDecodingTests))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698