Lines Matching full:remote
33 def _get_board_from_host(remote): argument
34 """Get the board of the remote host.
36 @param remote: string representing the IP of the remote host.
38 @return: A string representing the board of the remote host.
41 host = factory.create_host(remote)
51 def _get_model_from_host(remote): argument
52 """Get the model of the remote host.
54 @param remote: string representing the IP of the remote host.
56 @return: A string representing the board of the remote host.
59 host = factory.create_host(remote)
76 if arguments.remote == ':lab:':
111 @returns: tuple of parsed arguments and argv suitable for remote runs
117 parser = argparse.ArgumentParser(description='Run remote tests.',
120 parser.add_argument('remote', metavar='REMOTE',
121 help='hostname[:port] for remote device. Specify '
174 Add any arguments that should not be passed to remote test_that runs here.
274 arguments.board = _get_board_from_host(arguments.remote)
278 arguments.model = _get_model_from_host(arguments.remote)
318 arguments.remote,
369 @param argv: Remote Script command line arguments.
388 if arguments.remote == ':lab:':