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

Unified Diff: scripts/slave/recipe_modules/chromium/api.py

Issue 2430193003: WebRTC: Remove Dr Memory bots. (Closed)
Patch Set: Addressed comments. Created 4 years, 2 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 | « masters/master.tryserver.webrtc/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index 37414c1a6b5b393bf77267ac25a5ab97afdd4031..817407cec8bfee3857a56cb177402834b8d9975b 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -446,14 +446,14 @@ class ChromiumApi(recipe_api.RecipeApi):
full_args.append('--enable-msan')
if self.c.gyp_env.GYP_DEFINES.get('tsan', 0) == 1:
full_args.append('--enable-tsan')
- if self.c.runtests.memory_tool:
+ if self.c.runtests.enable_memcheck:
full_args.extend([
'--pass-build-dir',
'--pass-target',
'--run-shell-script',
self.c.runtests.memory_tests_runner,
'--test', t_name,
- '--tool', self.c.runtests.memory_tool,
+ '--tool', 'memcheck',
])
else:
full_args.append(test)
« no previous file with comments | « masters/master.tryserver.webrtc/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698