• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = 'pstew, wiley, quiche'
6NAME = 'network_WiFi_OverlappingBSSScan'
7TIME = 'SHORT'
8TEST_TYPE = 'Server'
9ATTRIBUTES = ('suite:wifi_matfunc')
10DEPENDENCIES = 'wificell'
11
12DOC = """
13This test case verifies that OBSS scan aborts and/or backs off when
14there is consistent outgoing traffic.  This test is similar to the
15current BgscanBackoff test, except that scans are triggered by the
16802.11n Overlapping BSS detection scans as opposed to wpa_supplicant's
17background scan mechanism.  To do so, we add configuration to
18wpa_supplicant to request that clients perform these scans, then
19test both that the client performs the scan (by monitoring the hostapd
20log) and that these scans do not disrupt the latency.
21
22"""
23
24
25def 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
32parallel_simple(run, machines)
33