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_WilcoServerOnNonWilcoDevice.wilco_policies' 7TIME = 'SHORT' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'enterprise' 10TEST_TYPE = 'server' 11# Disable this test until it can be fixed: http://b/171595642 12# ATTRIBUTES = 'suite:ent-nightly, suite:policy' 13 14DOC = """ 15Sets up and runs the WilcoOnNonWilcoDevice client test. Sets Wilco policies on 16non Wilco devices and makes sure they don't crash. 17 18""" 19 20client_test = 'policy_WilcoOnNonWilcoDevice' 21 22def run(machine): 23 host = hosts.create_host(machine) 24 job.run_test('policy_WilcoServerOnNonWilcoDevice', host=host, 25 client_test=client_test, case=None) 26 27parallel_simple(run, machines) 28