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 = 'bpeake' 6NAME = 'android_EasySetup' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9 10DOC = """ 11Sets up a phone how the user wants. 12 13""" 14 15import common 16from autotest_lib.server import utils 17 18def run(machine): 19 job.run_test('android_EasySetup', 20 testbed=hosts.create_testbed(machine)) 21 22 23parallel_simple(run, machines) 24