diff options
author | 2015-06-15 17:07:14 -0700 | |
---|---|---|
committer | 2015-06-15 17:07:14 -0700 | |
commit | 12e8a049e4d7b7f52baaf72604a093fdc3612120 (patch) | |
tree | 752a63be276068d0e8570dd77ab5284546a81756 /tools/run_tests | |
parent | 7ed33732bfb904cca1cb929499e390529ea7e8e2 (diff) |
backslashes break build on jenkins
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index ea40d7e990..2c9ffe72ec 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -123,7 +123,7 @@ class CLanguage(object): if travis and target['flaky']: continue if self.platform == 'windows': - binary = 'vsprojects\\test_bin\\%s.exe' % (target['name']) + binary = 'vsprojects/test_bin/%s.exe' % (target['name']) else: binary = 'bins/%s/%s' % (config.build_config, target['name']) out.append(config.job_spec([binary], [binary])) |