1# Copyright 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 = "yrizk@chromium.org"
8NAME = "enterprise_CFM_MimoUpdater"
9TEST_TYPE = "server"
10TIME = "SHORT"
11TEST_CATEGORY = "Functional"
12PURPOSE = "Server-side test for sanity check on mimo-updater."
13CRITERIA = "Fails if the Autotest framework doesn't work as expected."
14ATTRIBUTES = "suite:hotrod-remora"
15
16DOC = """
17This test verifies that all large pieces of the mimo displaylink
18firmware updater are working correctly: namely that the updater
19determines that an update is needed correctly and that it does
20the update correctly.
21"""
22
23def run_test(machine):
24    host = hosts.create_host(machine)
25    job.run_test("enterprise_CFM_MimoUpdater", host=host)
26
27parallel_simple(run_test, machines)
28