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

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

Issue 7465024: Adding new sync performance tests to chromium perf dashboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: '' Created 9 years, 5 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 | « build/masters/master.chromium.perf/master.cfg ('k') | build/scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
« no previous file with comments | « build/masters/master.chromium.perf/master.cfg ('k') | build/scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698