Skip to content
Snippets Groups Projects
Commit c895fe05 authored by Jan Tattermusch's avatar Jan Tattermusch Committed by Jan Tattermusch
Browse files

enable running c# tests on mac

parent f423b061
No related branches found
No related tags found
No related merge requests found
...@@ -178,6 +178,9 @@ class CLanguage(object): ...@@ -178,6 +178,9 @@ class CLanguage(object):
return ['buildtests_%s' % self.make_target] return ['buildtests_%s' % self.make_target]
return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target] return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target]
def make_options(self):
return []
def pre_build_steps(self): def pre_build_steps(self):
if self.platform == 'windows': if self.platform == 'windows':
return [['tools\\run_tests\\pre_build_c.bat']] return [['tools\\run_tests\\pre_build_c.bat']]
...@@ -216,6 +219,9 @@ class NodeLanguage(object): ...@@ -216,6 +219,9 @@ class NodeLanguage(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return [] return []
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [['tools/run_tests/build_node.sh']] return [['tools/run_tests/build_node.sh']]
...@@ -244,6 +250,9 @@ class PhpLanguage(object): ...@@ -244,6 +250,9 @@ class PhpLanguage(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['static_c', 'shared_c'] return ['static_c', 'shared_c']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [['tools/run_tests/build_php.sh']] return [['tools/run_tests/build_php.sh']]
...@@ -283,6 +292,9 @@ class PythonLanguage(object): ...@@ -283,6 +292,9 @@ class PythonLanguage(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['static_c', 'grpc_python_plugin', 'shared_c'] return ['static_c', 'grpc_python_plugin', 'shared_c']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
commands = [] commands = []
for python_version in self._build_python_versions: for python_version in self._build_python_versions:
...@@ -322,6 +334,9 @@ class RubyLanguage(object): ...@@ -322,6 +334,9 @@ class RubyLanguage(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['static_c'] return ['static_c']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [['tools/run_tests/build_ruby.sh']] return [['tools/run_tests/build_ruby.sh']]
...@@ -394,6 +409,13 @@ class CSharpLanguage(object): ...@@ -394,6 +409,13 @@ class CSharpLanguage(object):
else: else:
return ['grpc_csharp_ext'] return ['grpc_csharp_ext']
def make_options(self):
if self.platform == 'mac':
# On Mac, official distribution of mono is 32bit.
return ['CFLAGS=-arch i386', 'LDFLAGS=-arch i386']
else:
return []
def build_steps(self): def build_steps(self):
if self.platform == 'windows': if self.platform == 'windows':
return [['src\\csharp\\buildall.bat']] return [['src\\csharp\\buildall.bat']]
...@@ -425,6 +447,9 @@ class ObjCLanguage(object): ...@@ -425,6 +447,9 @@ class ObjCLanguage(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['grpc_objective_c_plugin', 'interop_server'] return ['grpc_objective_c_plugin', 'interop_server']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [['src/objective-c/tests/build_tests.sh']] return [['src/objective-c/tests/build_tests.sh']]
...@@ -455,6 +480,9 @@ class Sanity(object): ...@@ -455,6 +480,9 @@ class Sanity(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['run_dep_checks'] return ['run_dep_checks']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [] return []
...@@ -482,6 +510,9 @@ class Build(object): ...@@ -482,6 +510,9 @@ class Build(object):
def make_targets(self, test_regex): def make_targets(self, test_regex):
return ['static'] return ['static']
def make_options(self):
return []
def build_steps(self): def build_steps(self):
return [] return []
...@@ -749,6 +780,14 @@ if len(build_configs) > 1: ...@@ -749,6 +780,14 @@ if len(build_configs) > 1:
print language, 'does not support multiple build configurations' print language, 'does not support multiple build configurations'
sys.exit(1) sys.exit(1)
language_make_options=[]
if any(language.make_options() for language in languages):
if len(languages) != 1:
print 'languages with custom make options cannot be built simultaneously with other languages'
sys.exit(1)
else:
language_make_options = next(iter(languages)).make_options()
if platform_string() != 'windows': if platform_string() != 'windows':
if args.arch != 'default': if args.arch != 'default':
print 'Architecture %s not supported on current platform.' % args.arch print 'Architecture %s not supported on current platform.' % args.arch
...@@ -772,7 +811,8 @@ if platform_string() == 'windows': ...@@ -772,7 +811,8 @@ if platform_string() == 'windows':
'/p:Configuration=%s' % _WINDOWS_CONFIG[cfg], '/p:Configuration=%s' % _WINDOWS_CONFIG[cfg],
_windows_toolset_option(args.compiler), _windows_toolset_option(args.compiler),
_windows_arch_option(args.arch)] + _windows_arch_option(args.arch)] +
extra_args, extra_args +
language_make_options,
shell=True, timeout_seconds=None) shell=True, timeout_seconds=None)
for target in targets] for target in targets]
else: else:
...@@ -783,6 +823,7 @@ else: ...@@ -783,6 +823,7 @@ else:
'-j', '%d' % (multiprocessing.cpu_count() + 1), '-j', '%d' % (multiprocessing.cpu_count() + 1),
'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown, 'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown,
'CONFIG=%s' % cfg] + 'CONFIG=%s' % cfg] +
language_make_options +
([] if not args.travis else ['JENKINS_BUILD=1']) + ([] if not args.travis else ['JENKINS_BUILD=1']) +
targets, targets,
timeout_seconds=None)] timeout_seconds=None)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment