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 = "Chrome OS Team" 6NAME = "testbed_push" 7PURPOSE = "To be run while testing the infrastruture for testbed support." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This is a test suite to verify infrastructure support for testbed. It runs 16a suite of testbed tests to ensure functions like: 171. Create testbed object and run adb command to connect to each device. 182. Suite and provision support for testbed. 193. Other testbed/adb_host operations like installing apk. 20""" 21 22import common 23from autotest_lib.server.cros.dynamic_suite import dynamic_suite 24 25args_dict['add_experimental'] = True 26args_dict['name'] = NAME 27args_dict['max_runtime_mins'] = 30 28args_dict['job'] = job 29 30dynamic_suite.reimage_and_run(**args_dict)