1 # Copyright 2015 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 AUTHOR = 'bmahadev, krisr, harpreet' 6 TIME = 'SHORT' 7 NAME = 'network_WiFi_RoamSuspendEndToEnd' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:wifi_endtoend, suite:wifi_matfunc_bcm4371' 10 SUITE = 'wifi_endtoend, wifi_matfunc_bcm4371' 11 DEPENDENCIES = 'servo, wificell' 12 13 DOC = """ 14 WiFi_RoamSuspendEndToEnd test configures two APs with the same ssid and runs the 15 client side network_RoamWifiEndToEnd test which uses these APs to test 16 WiFi roaming between two Open Networks after a Suspend/Resume. 17 """ 18 19 from autotest_lib.server import utils 20 21 args_dict = utils.args_to_dict(args) 22 servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 23 24 def run(machine): 25 host = hosts.create_host(machine, servo_args=servo_args) 26 job.run_test('network_WiFi_RoamSuspendEndToEnd', 27 host=host, 28 raw_cmdline_args=args) 29 30 parallel_simple(run, machines) 31