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