1# Copyright 2019 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 = 'rzakarian' 6NAME = 'policy_DeviceServer.DeviceWilcoDtcAllowed_notset' 7TIME = 'SHORT' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'enterprise' 10TEST_TYPE = 'server' 11# Disable until test can be fixed: http://b/160218741 12# ATTRIBUTES = "suite:wilco_bve" 13 14DOC = """ 15Sets up and runs the client test for the DeviceWilcoDtcAllowed 16policy. If the policy is not set Wilco daemons should not start running 17on the device. 18 19""" 20 21client_test = 'policy_DeviceWilcoDtcAllowed' 22case = None 23 24def run(machine): 25 host = hosts.create_host(machine) 26 job.run_test('policy_DeviceServer', host=host, 27 client_test=client_test, case=case) 28 29parallel_simple(run, machines) 30