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

Unified Diff: third_party/grpc/tools/jenkins/run_interop.sh

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/grpc/tools/jenkins/run_interop.sh
diff --git a/third_party/WebKit/Tools/Scripts/print-layout-test-times b/third_party/grpc/tools/jenkins/run_interop.sh
similarity index 81%
copy from third_party/WebKit/Tools/Scripts/print-layout-test-times
copy to third_party/grpc/tools/jenkins/run_interop.sh
index 20019957724b7351a696c6c8c5830e881ed649ef..a424aea7fc47641fefd5a39c96d987ea6e569a0a 100755
--- a/third_party/WebKit/Tools/Scripts/print-layout-test-times
+++ b/third_party/grpc/tools/jenkins/run_interop.sh
@@ -1,6 +1,6 @@
-#!/usr/bin/python
-#
-# Copyright (C) 2013 Google Inc. All rights reserved.
+#!/usr/bin/env bash
+# Copyright 2015, Google Inc.
+# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -27,10 +27,11 @@
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+# This script is invoked by Jenkins and runs interop test suite.
+set -ex
-import sys
-
-from webkitpy.common import host
-from webkitpy.layout_tests import print_layout_test_times
+# Enter the gRPC repo root
+cd $(dirname $0)/../..
-print_layout_test_times.main(host.Host(), sys.argv[1:])
+tools/run_tests/run_interop_tests.py -l all -s all --cloud_to_prod --cloud_to_prod_auth --use_docker --http2_interop -t -j 12 $@ || true
« no previous file with comments | « third_party/grpc/tools/jenkins/run_distribution.sh ('k') | third_party/grpc/tools/jenkins/run_interop_stress.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698