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 5AUTHOR = 'dshi' 6NAME = 'android_DummyTest' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9SUITE = '' 10# All android tests do not support server-side packaging. 11REQUIRE_SSP = False 12 13DOC = """ 14A dummy test to verify Android device can be accessible with adb. 15""" 16 17def run(machine): 18 job.run_test('android_DummyTest', host=hosts.create_host(machine)) 19 20parallel_simple(run, machines) 21