1 # Copyright 2015 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 = 'garnold' 6 NAME = 'brillo_FastbootTest' 7 TIME = 'SHORT' 8 TEST_CATEGORY = 'Functional' 9 TEST_TYPE = 'Server' 10 ATTRIBUTES = 'suite:brillo-bvt, suite:brillo-postsubmit' 11 12 DOC = """ 13 Tests whether a Brillo device can reboot into and out of the bootloader. 14 """ 15 16 def run(machine): 17 job.run_test('brillo_FastbootTest', host=hosts.create_host(machine)) 18 19 20 parallel_simple(run, machines) 21