blob: 4d28ffdf0bb74c7d4ca0f9ea9af1f87548d679e2 [file] [log] [blame]
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# TEST IS DISABLED UNTIL MIGRATED TO PYTHON 3.
# For instructions on how to: go/tauto-py3-migration
# To re-enable migrate to Python 3.
# If the test is not migrated by 1/14/22 it will be deleted.
AUTHOR = 'briannorris'
NAME = 'network_WiFi_APSupportedRates.11g'
TIME = 'SHORT'
TEST_TYPE = 'Server'
DEPENDENCIES = 'wificell'
DOC = """
Verify that we respond accurately to APs that disable certain legacy bitrates.
"""
from autotest_lib.server.cros.network import hostap_config
def run(machine):
ap_config = hostap_config.HostapConfig(channel=6,
mode=hostap_config.HostapConfig.MODE_11G,
supported_rates=[24, 36, 48, 54],
basic_rates=[24])
job.run_test('network_WiFi_APSupportedRates',
host=hosts.create_host(machine),
raw_cmdline_args=args,
additional_params=ap_config)
parallel_simple(run, machines)