1 # Copyright 2017 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 = 'wirebrand (a] chromium.org, mrhw-sto-team (a] google.com' 6 NAME = 'enterprise_CFM_AtrusUpdaterStress' 7 TIME = 'LONG' 8 TEST_CATEGORY = 'Stress' 9 TEST_CLASS = 'enterprise' 10 # TODO(crbug/811694) Enable once dbus issue is fixed. 11 #ATTRIBUTES = 'suite:bluestreak' 12 TEST_TYPE = 'server' 13 DEPENDENCIES = 'atrus' 14 15 DOC = """ 16 This test repeatedly runs a firmware upgrade of the device. During the upgrade 17 transfer of the binary, and writing of the binary to flash is validated. 18 """ 19 20 def run_test(machine): 21 host = hosts.create_host(machine, servo_args=None) 22 job.run_test(NAME, host=host, repeat=10) 23 24 parallel_simple(run_test, machines) 25