aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-06-21 23:07:49 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-06-21 23:22:23 -0700
commitcaca0a15ded56b3732e0f67fe7d1507d9a7abf07 (patch)
treec368a88041f6b04c05fc13fd09f11cab98a76ff2 /tools/run_tests/run_tests.py
parent5988716d9d6e33cd59631865527d73d3caa87387 (diff)
Build objc examples as part of automatic tests
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 9ef12c5b07..0d77f0dbf9 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -425,7 +425,7 @@ class PythonLanguage(object):
return []
def build_steps(self):
- return [['tools/run_tests/build_python.sh', tox_env]
+ return [['tools/run_tests/build_python.sh', tox_env]
for tox_env in self._tox_envs]
def post_tests_steps(self):
@@ -602,6 +602,8 @@ class ObjCLanguage(object):
def test_specs(self):
return [self.config.job_spec(['src/objective-c/tests/run_tests.sh'], None,
+ environ=_FORCE_ENVIRON_FOR_WRAPPERS),
+ self.config.job_spec(['src/objective-c/tests/build_example_test.sh'], None,
environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
def pre_build_steps(self):