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 5 AUTHOR = 'rzakarian' 6 NAME = 'policy_DeviceServer.EphemeralUser_false' 7 TIME = 'SHORT' 8 TEST_CATEGORY = 'General' 9 TEST_CLASS = 'enterprise' 10 TEST_TYPE = 'server' 11 ATTRIBUTES = 'suite:ent-nightly, suite:policy' 12 13 DOC = """ 14 Sets up and runs the client test for the DeviceEphemeralUsersEnabled 15 policy. 16 17 """ 18 19 client_test = 'policy_DeviceEphemeralUsersEnabled' 20 case = False 21 22 def run(machine): 23 host = hosts.create_host(machine) 24 job.run_test('policy_DeviceServer', host=host, 25 client_test=client_test, case=case) 26 27 parallel_simple(run, machines) 28