Skip to content
Snippets Groups Projects
Commit 822602cf authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #4947 from jtattermusch/win64_correct_test_path

Use correct path for C tests on Win 64
parents 16020341 3de6b769
No related branches found
No related tags found
No related merge requests found
......@@ -132,8 +132,10 @@ class CLanguage(object):
if config.build_config in target['exclude_configs']:
continue
if self.platform == 'windows':
binary = 'vsprojects/%s/%s.exe' % (
_WINDOWS_CONFIG[config.build_config], target['name'])
binary = 'vsprojects/%s%s/%s.exe' % (
'x64/' if args.arch == 'x64' else '',
_WINDOWS_CONFIG[config.build_config],
target['name'])
else:
binary = 'bins/%s/%s' % (config.build_config, target['name'])
if os.path.isfile(binary):
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment