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

Unified Diff: scripts/master/factory/chromium_commands.py

Issue 128643002: GTTF: Correctly handle perf tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 6 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/chromium_commands.py
===================================================================
--- scripts/master/factory/chromium_commands.py (revision 243578)
+++ scripts/master/factory/chromium_commands.py (working copy)
@@ -454,13 +454,24 @@
def AddCCPerfTests(self, factory_properties=None):
self.AddAnnotatedPerfStep('cc_perftests', None, 'graphing',
cmd_name='cc_perftests',
+ cmd_options=[
+ # Retrieving perf test results currently
+ # relies on parsing stdout.
+ # TODO(phajdan.jr): Do not parse stdout.
+ '--test-launcher-print-test-stdio=always'
+ ],
step_name='cc_perftests',
factory_properties=factory_properties)
def AddMediaPerfTests(self, factory_properties=None):
self.AddAnnotatedPerfStep('media_perftests', None, 'graphing',
cmd_name='media_perftests',
- cmd_options=['--single-process-tests'],
ghost stip (do not use) 2014/01/09 19:42:00 don't we still want single-process-tests?
Paweł Hajdan Jr. 2014/01/10 10:05:47 No, it's wrong. Generally it shouldn't be used bui
+ cmd_options=[
+ # Retrieving perf test results currently
+ # relies on parsing stdout.
+ # TODO(phajdan.jr): Do not parse stdout.
+ '--test-launcher-print-test-stdio=always'
+ ],
step_name='media_perftests',
factory_properties=factory_properties)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698