aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2016-02-29 10:17:38 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-29 10:17:38 -0800
commitea2dabd9c89e86344846c4ec30e999d99d07aa63 (patch)
tree0a5c5d96ab33d009e6e2e0efdbcd1b942f7fa033 /infra
parent15923c9e475894d89028b7a6a0b38aeeb9f9e645 (diff)
Swarming bots: Fix tester out dir
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/common.py b/infra/bots/common.py
index e1123ef1d5..f3b0f70ffd 100644
--- a/infra/bots/common.py
+++ b/infra/bots/common.py
@@ -157,7 +157,7 @@ class BotInfo(object):
if self.bot_cfg['role'] == 'Build':
self.out_dir = swarm_out_dir
else:
- self.out_dir = 'out'
+ self.out_dir = os.path.join(self.skia_dir, 'out', self.name)
self.configuration = self.spec['configuration']
self.default_env = {
'SKIA_OUT': self.out_dir,