1# Copyright (c) 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 = 'zqiu, pstew, wiley, quiche' 6NAME = 'network_WiFi_CSADisconnect' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9ATTRIBUTES = ('suite:wifi_matfunc') 10DEPENDENCIES = 'wificell' 11 12DOC = """ 13This test verifies that DUT can still connect to the AP when it is 14disconnected right after receiving a CSA message. This is to make sure the MAC 1580211 queues are not stuck after those two events. 16""" 17 18 19from autotest_lib.server.cros.network import hostap_config 20 21 22def run(machine): 23 configurations = [(64, 36)] 24 host = hosts.create_host(machine) 25 job.run_test('network_WiFi_CSADisconnect', 26 host=host, 27 raw_cmdline_args=args, 28 additional_params=configurations) 29 30 31parallel_simple(run, machines) 32 33