17 lines
566 B
Python
17 lines
566 B
Python
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
class Config(object):
|
|
"""Client side services config. Accessible by server side code as well."""
|
|
|
|
# RPC server that runs on the DUT.
|
|
rpc_port = 9990
|
|
rpc_command = '/usr/local/autotest/cros/faft/rpc_server.py'
|
|
rpc_command_short = 'rpc_server.py'
|
|
rpc_ready_call = 'ready'
|
|
rpc_quit_call = 'quit'
|
|
rpc_timeout = 120
|
|
rpc_logfile = '/var/log/faft_xmlrpc_server.log'
|