Skip to content

Commit

Permalink
Merge pull request grpc#6789 from jtattermusch/fix_make_options_propa…
Browse files Browse the repository at this point in the history
…gation

Fix run_tests.py propagation of make options under docker
  • Loading branch information
jtattermusch committed Jun 3, 2016
2 parents 84f7193 + fd3857b commit 845a056
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,7 @@ def _gcc44_make_options(self):

def _compiler_options(self, use_docker, compiler):
"""Returns docker distro and make options to use for given compiler."""
if _is_use_docker_child():
return ("already_under_docker", [])
if not use_docker:
if not use_docker and not _is_use_docker_child():
_check_compiler(compiler, ['default'])

if compiler == 'gcc4.9' or compiler == 'default':
Expand Down

0 comments on commit 845a056

Please sign in to comment.