1# Copyright 2014 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 5AUTHOR = 'avakulenko, wiley, keybuk' 6NAME = 'buffet_PrivetSetupFlow' 7TIME = 'FAST' 8TEST_TYPE = 'Server' 9ATTRIBUTES = "suite:tendo_experimental" 10DEPENDENCIES = 'wificell' 11 12DOC = """ 13This test validates the buffet pairing/authentication/setup flow. 14 15""" 16 17from autotest_lib.client.common_lib import utils 18 19def run(machine): 20 CMDLINE_ROUTER_HOSTNAME = 'router_addr' 21 cmdline_args = utils.args_to_dict(args) 22 router_hostname = cmdline_args.get(CMDLINE_ROUTER_HOSTNAME, None) 23 job.run_test('buffet_PrivetSetupFlow', 24 host=hosts.create_host(machine), 25 router_hostname=router_hostname) 26 27 28parallel_simple(run, machines) 29