aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-06-15 17:07:14 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-06-15 17:07:14 -0700
commit12e8a049e4d7b7f52baaf72604a093fdc3612120 (patch)
tree752a63be276068d0e8570dd77ab5284546a81756 /tools/run_tests
parent7ed33732bfb904cca1cb929499e390529ea7e8e2 (diff)
backslashes break build on jenkins
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/run_tests.py2
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]))