• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2020 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 = 'matthewmwang'
6NAME = 'network_WiFi_RoamDiagnostics'
7TIME = 'LONG'
8TEST_TYPE = 'Server'
9DEPENDENCIES = 'wificell'
10
11DOC = """
12Bring up two APs and attenuate them around several values to observe and assess
13roam stickiness.
14"""
15
16
17def run(machine):
18    job.run_test('network_WiFi_RoamDiagnostics',
19                 host=hosts.create_host(machine),
20                 raw_cmdline_args=args,
21                 pcap_as_router=True)
22
23
24parallel_simple(run, machines)
25