You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
599 B
22 lines
599 B
# Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "Chrome OS Team"
|
|
NAME = "infra_FirmwareAutoupdate"
|
|
TIME = "SHORT"
|
|
TEST_TYPE = "server"
|
|
|
|
DOC = """
|
|
This is an administrative procedure used to update the RW firmware
|
|
on a test device in the lab by running the following command:
|
|
|
|
chromeos-firmwareupdate --mode=autoupdate
|
|
"""
|
|
|
|
def run(machine):
|
|
job.run_test('infra_FirmwareAutoupdate',
|
|
host=hosts.create_host(machine))
|
|
|
|
parallel_simple(run, machines)
|