1# Copyright 2017 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 = "porce@chromium.org" 8NAME = "enterprise_CFM_HuddlyUpdater" 9TIME = "SHORT" 10TEST_CATEGORY = "Functional" 11TEST_CLASS = "enterprise" 12TEST_TYPE = "server" 13# TODO(crbug/763474) Disabled since it is currently failing constantly. 14# ATTRIBUTES = "suite:hotrod" 15JOB_RETRIES = 3 16DEPENDENCIES = "huddly" 17 18DOC = """ 19This test performs the firmware update of HuddlyGo camera. 20""" 21 22args_dict = utils.args_to_dict(args) 23servo_args = None 24 25def run_test(machine): 26 host = hosts.create_host(machine, servo_args=servo_args) 27 job.run_test(NAME, host=host) 28 29 30parallel_simple(run_test, machines) 31