Chromium Code Reviews| Index: example/run_example_swarm.py |
| diff --git a/example/run_example_swarm.py b/example/run_example_swarm.py |
| index 78848b2f59a403672ab63079e62efcae9d382afe..0283244f4294d8c346f6f7896cb1ce50ec5d7d0b 100755 |
| --- a/example/run_example_swarm.py |
| +++ b/example/run_example_swarm.py |
| @@ -70,13 +70,14 @@ def main(): |
| ], |
| options.verbose) |
| - # Note that swarm_trigger_and_get_results.py could be used to run and get |
| - # results as a single call. |
| + # Note that swarming.py run could be used to run and get results as a single |
| + # call. |
| print('\nRunning') |
| hashval = hashlib.sha1(open(isolated, 'rb').read()).hexdigest() |
| run( |
| [ |
| - 'swarm_trigger_step.py', |
| + 'swarming.py', |
| + 'trigger', |
| '--os_image', sys.platform, |
| '--swarm-url', options.swarm_server, |
| '--test-name-prefix', prefix, |
| @@ -92,7 +93,8 @@ def main(): |
| print('\nGetting results') |
| run( |
| [ |
| - 'swarm_get_results.py', |
| + 'swarming.py', |
| + 'results', |
|
Vadim Sh.
2013/08/16 18:58:58
What do you think about renaming it to some verb?
M-A Ruel
2013/08/18 00:18:18
Good idea, chose collect.
|
| '--url', options.swarm_server, |
| prefix + 'hello_world', |
| ], |