aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-09-01 12:23:16 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-09-01 12:23:16 -0700
commitf418260787e8af1b635084133ce14615c88a7331 (patch)
tree70943fe0cb55b5758cb78dc41584874269beed29 /tools
parentfa5df1cc2ab002d9d4b463efc6b52696fa823fe3 (diff)
make windows tests run
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 6da6f42642..6e869e18ae 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -141,7 +141,8 @@ class CLanguage(object):
if travis and target['flaky']:
continue
if self.platform == 'windows':
- binary = 'vsprojects/test_bin/%s.exe' % (target['name'])
+ binary = 'vsprojects/%s/%s.exe' % (
+ _WINDOWS_CONFIG[config.build_config], target['name'])
else:
binary = 'bins/%s/%s' % (config.build_config, target['name'])
if os.path.isfile(binary):