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