Home | History | Annotate | Download | only in faft
      1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 
      6 class Config(object):
      7     """Client side services config. Accessible by server side code as well."""
      8 
      9     # RPC server that runs on the DUT.
     10     rpc_port = 9990
     11     rpc_command = '/usr/local/autotest/cros/faft/rpc_server.py'
     12     rpc_command_short = 'rpc_server'
     13     rpc_ready_call = 'system.is_available'
     14     rpc_timeout = 20
     15     rpc_logfile = '/var/log/faft_xmlrpc_server.log'
     16