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

Side by Side Diff: slave/skia_slave_scripts/android_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, 5 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 render_pdfs executable. """ 6 """ Run DecodingTests on an Android device. """
7 7
8 from android_build_step import AndroidBuildStep 8 from android_build_step import AndroidBuildStep
9 from build_step import BuildStep 9 from build_step import BuildStep
10 from render_pdfs import RenderPdfs 10 from run_decoding_tests import RunDecodingTests
11 import sys 11 import sys
12 12
13 13
14 class AndroidRenderPdfs(AndroidBuildStep, RenderPdfs): 14 class AndroidRunDecodingTests(AndroidBuildStep, RunDecodingTests):
15 pass 15 pass
16 16
17 17
18 if '__main__' == __name__: 18 if '__main__' == __name__:
19 sys.exit(BuildStep.RunBuildStep(AndroidRenderPdfs)) 19 sys.exit(BuildStep.RunBuildStep(AndroidRunDecodingTests))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698