Home | History | Annotate | Download | only in android_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 = 'android_DummyTest'
      7 TIME = 'SHORT'
      8 TEST_TYPE = 'Server'
      9 SUITE = ''
     10 # All android tests do not support server-side packaging.
     11 REQUIRE_SSP = False
     12 
     13 DOC = """
     14 A dummy test to verify Android device can be accessible with adb.
     15 """
     16 
     17 def run(machine):
     18     job.run_test('android_DummyTest', host=hosts.create_host(machine))
     19 
     20 parallel_simple(run, machines)
     21