• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2019 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
5from autotest_lib.server import utils
6
7AUTHOR = "rzakarian"
8NAME = "policy_WilcoServerDeviceDockMacAddressSource.designated_mac"
9TIME = "LONG"
10TEST_CATEGORY = "General"
11TEST_CLASS = "enterprise"
12TEST_TYPE = "server"
13ATTRIBUTES = "suite:wilco_bve_dock"
14
15DOC = """
16This test verifies the MAC address of the dock with the
17policy_DeviceDockMacAddressSource set. If the policy is set to 1 then the
18dock should use the designated MAC address of the DUT.
19
20"""
21
22client_test = 'policy_DeviceDockMacAddressSource'
23case = 'designated_mac'
24
25def run(machine):
26    host = hosts.create_host(machine)
27    job.run_test('policy_WilcoServerDeviceDockMacAddressSource', host=host,
28                 client_test=client_test, case=case)
29
30parallel_simple(run, machines)