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