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 5AUTHOR = 'sadmac' 6NAME = 'brillo_ADBLogcatTest' 7TIME = 'SHORT' 8TEST_CATEGORY = 'Functional' 9TEST_TYPE = 'Server' 10ATTRIBUTES = ('suite:brillo-bvt, suite:brillo-pts, suite:brillo-presubmit, ' 11 'suite:brillo-postsubmit') 12 13DOC = """ 14Tests whether 'adb logcat' and 'adb shell dmesg' work 15""" 16 17def run(machine): 18 job.run_test('brillo_ADBLogcatTest', host=hosts.create_host(machine)) 19 20parallel_simple(run, machines) 21