blob: f064f3080bf086d1e569d90c51934b3f6a5bace7 [file] [log] [blame]
# Copyright 2017 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.
from autotest_lib.server import utils
AUTHOR = 'ejcaruso, snanda'
NAME = 'network_WiFi_RandomMACAddress'
TIME = 'SHORT'
TEST_TYPE = 'Server'
DEPENDENCIES = 'wificell'
ATTRIBUTES = ''
DOC = """
This test verifies that MAC address randomization can be
turned on and that scans launched with the feature do not use
the hardware MAC address.
"""
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('network_WiFi_RandomMACAddress',
host=host,
raw_cmdline_args=args)
parallel_simple(run, machines)