aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-01 11:32:52 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-01 11:32:52 -0700
commit89717c4c34967baf4733435cc9640e30eddddb64 (patch)
treeaaf2158728b0003a989112d321b1e8c3fa23d9b0 /tools/run_tests/run_tests.py
parent49ff23f32dce0a8d70381858d658d5077aaaeef9 (diff)
parentaa031d6a23e14a3509fb9c43b5353ea8839b1697 (diff)
Merge github.com:grpc/grpc into we-dont-need-no-backup
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index f60ecd83e8..f34a6c9c07 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -149,7 +149,7 @@ class NodeLanguage(object):
environ={'GRPC_TRACE': 'surface,batch'})]
def make_targets(self):
- return ['static_c']
+ return ['static_c', 'shared_c']
def build_steps(self):
return [['tools/run_tests/build_node.sh']]
@@ -168,7 +168,7 @@ class PhpLanguage(object):
environ={'GRPC_TRACE': 'surface,batch'})]
def make_targets(self):
- return ['static_c']
+ return ['static_c', 'shared_c']
def build_steps(self):
return [['tools/run_tests/build_php.sh']]
@@ -202,7 +202,7 @@ class PythonLanguage(object):
return files + modules
def make_targets(self):
- return ['static_c', 'grpc_python_plugin']
+ return ['static_c', 'grpc_python_plugin', 'shared_c']
def build_steps(self):
return [['tools/run_tests/build_python.sh']]