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