1 # Copyright 2016 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 = 'wiley' 6 NAME = 'brillo_CameraSanity' 7 TIME = 'FAST' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:brillo-bvt, suite:brillo-pts, suite:brillo-smoke' 10 DEPENDENCIES = 'camera-hal' 11 12 DOC = """ 13 Test the most basic camera functionality on a Brillo DUT. 14 """ 15 16 def run(machine): 17 job.run_test('brillo_CameraSanity', host=hosts.create_host(machine)) 18 19 parallel_simple(run, machines) 20