Home | History | Annotate | Download | only in network_WiFi_OverlappingBSSScan
      1 # Copyright (c) 2013 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 = 'pstew, wiley, quiche'
      6 NAME = 'network_WiFi_OverlappingBSSScan'
      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 case verifies that OBSS scan aborts and/or backs off when
     14 there is consistent outgoing traffic.  This test is similar to the
     15 current BgscanBackoff test, except that scans are triggered by the
     16 802.11n Overlapping BSS detection scans as opposed to wpa_supplicant's
     17 background scan mechanism.  To do so, we add configuration to
     18 wpa_supplicant to request that clients perform these scans, then
     19 test both that the client performs the scan (by monitoring the hostapd
     20 log) and that these scans do not disrupt the latency.
     21 
     22 """
     23 
     24 
     25 def run(machine):
     26     host = hosts.create_host(machine)
     27     job.run_test('network_WiFi_OverlappingBSSScan',
     28                  host=host,
     29                  raw_cmdline_args=args)
     30 
     31 
     32 parallel_simple(run, machines)
     33