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

Side by Side Diff: infra/bots/test_skia.py

Issue 1743113003: Add test_skia.py, isolates for test_skia, images, skps (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Cleanup Created 4 years, 9 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
« infra/bots/download_images.py ('K') | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
3 # Copyright 2016 Google Inc.
4 #
5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file.
7
8
9 import common
10 import os
11 import sys
12
13
14 def main():
15 if len(sys.argv) != 7:
rmistry 2016/02/29 13:01:34 It will make things much more readable and maintai
borenet 2016/02/29 13:53:54 Done.
16 print >> sys.stderr, ('Usage: test_skia.py <master name> <builder name> '
17 '<build number> <slave name> <revision> '
18 '<swarm out dir>')
19 sys.exit(1)
20 master = sys.argv[1]
21 builder = sys.argv[2]
22 number = sys.argv[3]
23 slave = sys.argv[4]
24 revision = sys.argv[5]
25 swarm_results_dir = os.path.abspath(sys.argv[6])
26 bot = common.BotInfo(builder, swarm_results_dir)
27 bot.test_steps(revision, master, slave, number)
28
29
30 if __name__ == '__main__':
31 main()
OLDNEW
« infra/bots/download_images.py ('K') | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698