From 57d66ddf50b31c2561526075be9c8796df209e2d Mon Sep 17 00:00:00 2001 From: borenet Date: Thu, 17 Mar 2016 09:19:09 -0700 Subject: [PATCH] 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 --- infra/bots/flavor/default_flavor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/bots/flavor/default_flavor.py b/infra/bots/flavor/default_flavor.py index 5cf0eee..4d11117 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': -- 2.7.4