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