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

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: Resolve conflict in master.cfg 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 94321)
+++ build/scripts/master/factory/chromium_commands.py (working copy)
@@ -321,6 +321,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)
+ self.AddTestStep(c, 'sync', cmd,
+ 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