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

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

Issue 705913002: WebRTC: Skip flakiness dashboard generation for memory tools bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years, 1 month 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
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 5f59eba2c384ca3cec559c3bf995acdcfbd26132..698be35a61935ae0fc2475620866a2145d6f5d49 100644
--- a/scripts/slave/recipe_modules/webrtc/api.py
+++ b/scripts/slave/recipe_modules/webrtc/api.py
@@ -214,7 +214,8 @@ class WebRTCApi(recipe_api.RecipeApi):
annotate = 'gtest'
python_mode = False
test_type = test
- flakiness_dash = not self.m.tryserver.is_tryserver
+ flakiness_dash = (not self.m.tryserver.is_tryserver and
+ not self.m.chromium.c.runtests.memory_tool)
if parallel:
test_executable = self.m.chromium.c.build_dir.join(
self.m.chromium.c.build_config_fs, test)

Powered by Google App Engine
This is Rietveld 408576698