Index: tools/isolate/run_test_from_archive.py |
diff --git a/tools/isolate/run_test_from_archive.py b/tools/isolate/run_test_from_archive.py |
index 11bc2685f12b1e9b23ca1eb62a7e719193bff031..5f91ac637048f4a3dfa03652bb2933bdac496f23 100755 |
--- a/tools/isolate/run_test_from_archive.py |
+++ b/tools/isolate/run_test_from_archive.py |
@@ -265,6 +265,8 @@ def run_tha_test(manifest, cache_dir, remote, max_cache_size, min_free_space): |
if manifest.get('read_only'): |
make_writable(outdir, True) |
cmd = manifest['command'] |
+ # Ensure paths are correctly separatored on windows. |
+ cmd[0] = cmd[0].replace('/', os.path.sep) |
logging.info('Running %s, cwd=%s' % (cmd, cwd)) |
return subprocess.call(cmd, cwd=cwd) |
finally: |