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

Unified 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: Address comments Created 4 years, 10 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 | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/test_skia.py
diff --git a/infra/bots/test_skia.py b/infra/bots/test_skia.py
new file mode 100644
index 0000000000000000000000000000000000000000..59992edd0e7e0afd8c23081a202a3e8dbe434c2d
--- /dev/null
+++ b/infra/bots/test_skia.py
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+#
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+
+import argparse
+import common
+import os
+import sys
+
+
+def main():
+ parser = argparse.ArgumentParser()
+ parser.add_argument('--master_name', required=True)
+ parser.add_argument('--builder_name', required=True)
+ parser.add_argument('--build_number', required=True)
+ parser.add_argument('--slave_name', required=True)
+ parser.add_argument('--revision', required=True)
+ parser.add_argument('--swarm_out_dir', required=True)
+ args = parser.parse_args()
+ bot = common.BotInfo(args.builder_name, os.path.abspath(args.swarm_out_dir))
+ bot.test_steps(args.revision, args.master_name, args.slave_name,
+ args.build_number)
+
+
+if __name__ == '__main__':
+ main()
« no previous file with comments | « infra/bots/test_skia.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698