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 5 AUTHOR = 'zqiu, pstew, wiley, quiche' 6 NAME = 'network_WiFi_CSADisconnect' 7 TIME = 'SHORT' 8 TEST_TYPE = 'Server' 9 SUITE = 'wifi_matfunc, wifi_matfunc_bcm4371' 10 ATTRIBUTES = 'suite:wifi_matfunc, suite:wifi_matfunc_bcm4371' 11 DEPENDENCIES = 'wificell' 12 13 DOC = """ 14 This test verifies that DUT can still connect to the AP when it is 15 disconnected right after receiving a CSA message. This is to make sure the MAC 16 80211 queues are not stuck after those two events. 17 """ 18 19 20 from autotest_lib.server.cros.network import hostap_config 21 22 23 def 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 32 parallel_simple(run, machines) 33 34