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