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 = 'stress_EnrollmentRetainment.EnrollmentRetainment' 7TIME = 'LONG' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'enterprise' 10TEST_TYPE = 'server' 11ATTRIBUTES = 'suite:enroll_retainment' 12 13DOC = """ 14Sets up and runs the client test for the policy_EnrollmentRetainment. 15 16""" 17 18client_test = 'policy_EnrollmentRetainment' 19 20def run(machine): 21 host = hosts.create_host(machine) 22 job.run_test('stress_EnrollmentRetainment', host=host, 23 client_test=client_test, loops=100) 24 25parallel_simple(run, machines) 26