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" 10SUITE='tendo_experimental' 11DEPENDENCIES = 'wificell' 12 13DOC = """ 14This test validates the buffet pairing/authentication/setup flow. 15 16""" 17 18from autotest_lib.client.common_lib import utils 19 20def run(machine): 21 CMDLINE_ROUTER_HOSTNAME = 'router_addr' 22 cmdline_args = utils.args_to_dict(args) 23 router_hostname = cmdline_args.get(CMDLINE_ROUTER_HOSTNAME, None) 24 job.run_test('buffet_PrivetSetupFlow', 25 host=hosts.create_host(machine), 26 router_hostname=router_hostname) 27 28 29parallel_simple(run, machines) 30