aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-22 10:07:34 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-05-24 16:03:32 -0700
commitaf7cf54e512953a9a3e71f6ad4993a7069c093fb (patch)
tree8c03042b2042e8e0acfa032ce12f4299dc31ee1c /tools
parent031dea1df4b6213b9f9779a824fccc6d348b8648 (diff)
Build shared libraries for wrapped languages too
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 3a344693c1..a1ecb11ef4 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -57,7 +57,7 @@ class SimpleConfig(object):
if environ is None:
environ = {}
self.build_config = config
- self.maxjobs = 2 * multiprocessing.cpu_count()
+ self.maxjobs = 100 * multiprocessing.cpu_count()
self.allow_hashing = (config != 'gcov')
self.environ = environ
self.environ['CONFIG'] = config
@@ -151,7 +151,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']]
@@ -170,7 +170,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']]
@@ -204,7 +204,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']]
@@ -282,7 +282,7 @@ class Build(object):
return []
def make_targets(self):
- return ['static']
+ return ['static', 'shared']
def build_steps(self):
return []