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

Unified Diff: scripts/slave/recipe_modules/webrtc/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 | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipe_modules/webrtc/builders.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/webrtc/api.py
diff --git a/scripts/slave/recipe_modules/webrtc/api.py b/scripts/slave/recipe_modules/webrtc/api.py
index 665ea33f2292d287ea2c54f2599ba14370b8d3f0..e4f17f90f7af72d3d51767a137df635752d91d02 100644
--- a/scripts/slave/recipe_modules/webrtc/api.py
+++ b/scripts/slave/recipe_modules/webrtc/api.py
@@ -277,11 +277,11 @@ class WebRTCApi(recipe_api.RecipeApi):
annotate = 'gtest'
test_type = test
flakiness_dash = (not self.m.tryserver.is_tryserver and
- not self.m.chromium.c.runtests.memory_tool)
+ not self.m.chromium.c.runtests.enable_memcheck)
- # Dr Memory and Memcheck memory tools uses special scripts that doesn't
- # play well with the gtest-parallel script.
- if parallel and not self.m.chromium.c.runtests.memory_tool:
+ # Memcheck uses special scripts that don't play well with
+ # the gtest-parallel script.
+ if parallel and not self.m.chromium.c.runtests.enable_memcheck:
test_executable = self.m.chromium.c.build_dir.join(
self.m.chromium.c.build_config_fs, test)
args = [test_executable, '--'] + args
« no previous file with comments | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipe_modules/webrtc/builders.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698