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): |