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 = 'dshi' 6 NAME = 'testbed_DummyTest.install_apk' 7 TIME = 'SHORT' 8 TEST_TYPE = 'Server' 9 # All android tests do not support server-side packaging. 10 REQUIRE_SSP = False 11 ATTRIBUTES = "suite:testbed_push" 12 13 DOC = """ 14 A dummy test to verify testbed can run basic provision and adb command to 15 connected Android devices, and install apk to the devices. 16 """ 17 18 def run(machine): 19 job.run_test('testbed_DummyTest', 20 testbed=hosts.create_target_machine(machine), 21 test_apk_install=True) 22 23 parallel_simple(run, machines) 24