Home | History | Annotate | Download | only in firmware_Cr50RejectUpdate
      1 # Copyright 2018 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 from autotest_lib.server import utils
      6 
      7 AUTHOR = "mruthven"
      8 NAME = "firmware_Cr50RejectUpdate"
      9 PURPOSE = "Verify cr50 update rejection"
     10 ATTRIBUTES = "suite:cr50_stress_experimental"
     11 TIME = "SHORT"
     12 TEST_TYPE = "server"
     13 DEPENDENCIES = "servo"
     14 
     15 DOC = """Verify cr50 rejects images before trying to update."""
     16 
     17 args_dict = utils.args_to_dict(args)
     18 servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
     19 
     20 def run(machine):
     21     host = hosts.create_host(machine, servo_args=servo_args)
     22 
     23     job.run_test("firmware_Cr50RejectUpdate", host=host, cmdline_args=args)
     24 
     25 parallel_simple(run, machines)
     26