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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/steps.py

Issue 2020603002: Revert "build: remove diagnose_goma step to stop leaks" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 7 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_tests/api.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_tests/steps.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/steps.py b/scripts/slave/recipe_modules/chromium_tests/steps.py
index ad0b3ee6ea8945f84f16b5117590492a507de7d4..f3f1ca195a59552e7f96dbf7574c42d8acc8e1f1 100644
--- a/scripts/slave/recipe_modules/chromium_tests/steps.py
+++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
@@ -1834,6 +1834,23 @@ class WebViewCTSTest(Test):
api.chromium_android.run_webview_cts()
+class DiagnoseGomaTest(Test):
+ name = 'diagnose_goma'
+
+ @property
+ def name(self):
+ return 'diagnose_goma'
+
+ @staticmethod
+ def compile_targets(_):
+ return []
+
+ def run(self, api, suffix, test_filter=None):
+ diagnose_goma_log_py = api.path['build'].join('goma',
+ 'diagnose_goma_log.py')
+ api.python('diagnose_goma', diagnose_goma_log_py, [])
+
+
class IncrementalCoverageTest(Test):
name = 'incremental_coverage'
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/api.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698