1# Copyright 2016 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 5AUTHOR = "ChromeOS Team" 6NAME = "infra_FirmwareAutoupdate" 7TIME = "SHORT" 8TEST_TYPE = "server" 9PY_VERSION = 3 10 11DOC = """ 12This is an administrative procedure used to update the RW firmware 13on a test device in the lab by running the following command: 14 15 chromeos-firmwareupdate --mode=autoupdate 16""" 17 18def run(machine): 19 job.run_test('infra_FirmwareAutoupdate', 20 host=hosts.create_host(machine)) 21 22parallel_simple(run, machines) 23