| Index: scripts/slave/recipes/mojo.py
|
| diff --git a/scripts/slave/recipes/mojo.py b/scripts/slave/recipes/mojo.py
|
| index 5b91c255247d785578eeb60ef68744d77c973c28..7696a468a10ee55966372697a97a29d9402a28f6 100644
|
| --- a/scripts/slave/recipes/mojo.py
|
| +++ b/scripts/slave/recipes/mojo.py
|
| @@ -58,7 +58,14 @@ 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', api.properties.get('test_results_server',
|
| + 'test-results.appspot.com'),
|
| + ])
|
|
|
| def _UploadShell(api):
|
| upload_path = api.path['checkout'].join('mojo', 'tools',
|
|
|