Chromium Code Reviews| Index: build/scripts/master/factory/chromium_commands.py |
| =================================================================== |
| --- build/scripts/master/factory/chromium_commands.py (revision 93933) |
| +++ build/scripts/master/factory/chromium_commands.py (working copy) |
| @@ -318,6 +318,17 @@ |
| self.AddTestStep(c, 'new_tab_ui_warm_test', cmd, |
| do_step_if=self.TestStepFilter) |
| + def AddSyncPerfTests(self, factory_properties=None): |
| + factory_properties = factory_properties or {} |
| + c = self.GetPerfStepClass(factory_properties, 'sync', |
| + process_log.GraphingLogProcessor) |
| + |
| + options = ['--gtest_filter=*SyncPerfTest.*', |
| + '--ui-test-action-max-timeout=120000',] |
| + cmd = self.GetTestCommand('sync_performance_tests', options) |
|
cmp
2011/07/26 00:52:39
The sync performance tests should be included in t
|
| + self.AddTestStep(c, 'sync_test', cmd, |
|
cmp
2011/07/26 00:52:39
sync_test -> sync
|
| + do_step_if=self.TestStepFilter) |
| + |
| def AddTabSwitchingTests(self, factory_properties=None): |
| factory_properties = factory_properties or {} |
| c = self.GetPerfStepClass(factory_properties, 'tab-switching', |