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 |