Chromium Code Reviews| 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) |