1# Copyright 2018 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 5from autotest_lib.server import utils 6 7AUTHOR = 'kathrelkeld' 8NAME = 'policy_AUServer.AUDisabled.false' 9TIME = 'SHORT' 10TEST_CATEGORY = 'General' 11TEST_CLASS = 'enterprise' 12TEST_TYPE = 'server' 13ATTRIBUTES = 'suite:ent-nightly, suite:policy' 14 15DOC = """ 16Sets up and runs the client test for the DeviceAutoUpdateDisabled 17policy. 18 19""" 20args_dict = utils.args_to_dict(args) 21client_test = 'policy_DeviceAutoUpdateDisabled' 22case = False 23 24def run(machine): 25 host = hosts.create_host(machine) 26 job.run_test('policy_AUServer', host=host, client_test=client_test, 27 case=case, **args_dict) 28 29parallel_simple(run, machines) 30