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