| Index: bin/cros_run_parallel_vm_tests.py
|
| diff --git a/bin/cros_run_parallel_vm_tests.py b/bin/cros_run_parallel_vm_tests.py
|
| index 2ca51a3afa25d3f0bcfdf62fa300716822d2f70a..3d0d1d6d90ea126c010d35610e1ef817be30f178 100755
|
| --- a/bin/cros_run_parallel_vm_tests.py
|
| +++ b/bin/cros_run_parallel_vm_tests.py
|
| @@ -70,14 +70,14 @@ class ParallelTestRunner(object):
|
| args = [ os.path.join(os.path.dirname(__file__), 'cros_run_vm_test'),
|
| '--snapshot', # The image is shared so don't modify it.
|
| '--no_graphics',
|
| - '--ssh_port=%d' % ssh_port,
|
| - '--test_case=%s' % test ]
|
| + '--ssh_port=%d' % ssh_port ]
|
| if self._board: args.append('--board=%s' % self._board)
|
| if self._image_path: args.append('--image_path=%s' % self._image_path)
|
| if self._results_dir_root:
|
| args.append('--results_dir_root=%s/%s.%d' %
|
| (self._results_dir_root, test, ssh_port))
|
| if self._use_emerged: args.append('--use_emerged')
|
| + args.append(test)
|
| Info('Running %r...' % args)
|
| output = None
|
| if self._order_output:
|
|
|