Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: infra/bots/flavor/default_flavor.py

Issue 1806323003: Fix Linux Swarming bots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/flavor/default_flavor.py
diff --git a/infra/bots/flavor/default_flavor.py b/infra/bots/flavor/default_flavor.py
index 5cf0eee85b2142e26160c89e7dbf2be7806909e9..4d1111795db95becc48aaef679c0fc866f765950 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':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698