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

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

Issue 28933002: Android: do not run telemetry directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 2 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
Index: scripts/master/factory/chromium_commands.py
diff --git a/scripts/master/factory/chromium_commands.py b/scripts/master/factory/chromium_commands.py
index 6c9db6b7f207206c9605798bee8c44a763461166..0427094d1bc8e87fa154457774f36e8e5a182172 100644
--- a/scripts/master/factory/chromium_commands.py
+++ b/scripts/master/factory/chromium_commands.py
@@ -923,6 +923,13 @@ class ChromiumCommands(commands.FactoryCommands):
cmd_options=['--device-status-dashboard'], step_name='device_status',
py_script=True, factory_properties=factory_properties, alwaysRun=True)
+ def AddAndroidShardedPerfTests(self, factory_properties):
+ script = os.path.join(self._build_dir, 'src', 'build', 'android',
+ 'test_runner.py')
+ args = ['perf', '--steps',
+ factory_properties.get('android_sharded_perf_tests')]
+ self._AddBasicPythonTest('sharded_perf_tests', script=script, args=args)
ghost stip (do not use) 2013/10/21 21:41:17 this doesn't do any RESULT parsing. you need to pa
+
def AddTelemetryTest(self, test_name, step_name=None,
factory_properties=None, timeout=1200,
tool_options=None, dashboard_url=None):

Powered by Google App Engine
This is Rietveld 408576698