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