| # Copyright 2015 The Chromium OS Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| AUTHOR = 'dshi' |
| NAME = 'android_DummyTest' |
| TIME = 'SHORT' |
| TEST_TYPE = 'Server' |
| SUITE = '' |
| # All android tests do not support server-side packaging. |
| REQUIRE_SSP = False |
| |
| DOC = """ |
| A dummy test to verify Android device can be accessible with adb. |
| """ |
| |
| def run(machine): |
| job.run_test('android_DummyTest', host=hosts.create_host(machine)) |
| |
| parallel_simple(run, machines) |