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