1 # Copyright (c) 2014 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 = "platform_LabFirmwareUpdate" 7 PURPOSE = "Compare shellball firmware version to installed version, run chromeos-firmwareupdate if different ." 8 CRITERIA = "Update device firmware to match shellball." 9 TIME = "SHORT" 10 TEST_CATEGORY = "Functional" 11 TEST_CLASS = "firmware" 12 TEST_TYPE = "server" 13 ATTRIBUTES = "suite:faft_flashrom" 14 DEPENDENCIES = "lab_fw_update" 15 16 DOC = """ 17 This test compares the installed BIOS and EC versions to those in the 18 shallball. If they are not the same, execute chromeos-firmwareupdate. 19 Device needs to have software write protect disable. 20 """ 21 22 def run(machine): 23 host = hosts.create_host(machine) 24 25 job.run_test('platform_LabFirmwareUpdate', host=host) 26 27 parallel_simple(run, machines) 28