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

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

Issue 1885273003: V8: Highligh slow tests not marked as slow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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 | scripts/slave/recipe_modules/v8/test_api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/v8/api.py
diff --git a/scripts/slave/recipe_modules/v8/api.py b/scripts/slave/recipe_modules/v8/api.py
index c3265be0f2c1167d3a38453a4d809a0fbfe95147..5257fe22edd0bf242ea446d01ff5e2e3208bfeb0 100644
--- a/scripts/slave/recipe_modules/v8/api.py
+++ b/scripts/slave/recipe_modules/v8/api.py
@@ -727,8 +727,13 @@ class V8Api(recipe_api.RecipeApi):
# Slowest tests duration summary.
lines = []
for test in output['slowest_tests']:
+ suffix = ''
+ if test.get('marked_slow') is False:
+ suffix = ' *'
lines.append(
- '%s %s' %(V8Api.format_duration(test['duration']), test['name']))
+ '%s %s%s' % (V8Api.format_duration(test['duration']),
+ test['name'], suffix))
+
# Slowest tests duration details.
lines.extend(['', 'Details:', ''])
for test in output['slowest_tests']:
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698