Chromium Code Reviews| Index: scripts/slave/recipes/mojo.py |
| diff --git a/scripts/slave/recipes/mojo.py b/scripts/slave/recipes/mojo.py |
| index 5b91c255247d785578eeb60ef68744d77c973c28..6599cf72bd90a94872dae8a981293d52c37584a3 100644 |
| --- a/scripts/slave/recipes/mojo.py |
| +++ b/scripts/slave/recipes/mojo.py |
| @@ -58,7 +58,13 @@ def _BuildSteps(api, buildername, build_type): |
| def _RunTests(api, build_type): |
| mojob_path = api.path['checkout'].join('mojo', 'tools', 'mojob.py') |
| - api.python('mojob test', mojob_path, args=['test', build_type]) |
| + api.python('mojob test', mojob_path, args=[ |
| + 'test', build_type, |
| + '--master-name', api.properties.get('mastername'), |
| + '--builder-name', api.properties.get('buildername'), |
| + '--build-number', api.properties.get('buildnumber'), |
| + '--test-results-server', 'test-results.appspot.com', |
|
agable
2014/11/17 21:16:13
Might be nice to have a way to override this when
ojan
2014/11/17 21:20:01
Good idea. Done.
|
| + ]) |
| def _UploadShell(api): |
| upload_path = api.path['checkout'].join('mojo', 'tools', |