diff options
author | borenet <borenet@chromium.org> | 2016-03-17 09:19:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-17 09:19:09 -0700 |
commit | 57d66ddf50b31c2561526075be9c8796df209e2d (patch) | |
tree | 4f5b74a7d3a8058f3f4cda9aa54043b844b2e14f | |
parent | 64e9816429bfff0a666b5f0995e9124e2689595d (diff) |
Fix Linux Swarming bots
NOTRY=true
NOTREECHECKS=true
BUG=skia:4763
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1806323003
Review URL: https://codereview.chromium.org/1806323003
-rw-r--r-- | infra/bots/flavor/default_flavor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/bots/flavor/default_flavor.py b/infra/bots/flavor/default_flavor.py index 5cf0eee85b..4d1111795d 100644 --- a/infra/bots/flavor/default_flavor.py +++ b/infra/bots/flavor/default_flavor.py @@ -76,8 +76,8 @@ class DefaultFlavorUtils(object): path_to_app = os.path.join(self._bot_info.out_dir, self._bot_info.configuration, cmd[0]) if ('linux' in sys.platform and - 'x86_64' in self._bot_info.bot_name and - not 'TSAN' in self._bot_info.bot_name): + 'x86_64' in self._bot_info.name and + not 'TSAN' in self._bot_info.name): new_cmd = ['catchsegv', path_to_app] else: if sys.platform == 'win32': |