1 # Copyright 2014 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 = "achuith, zelidrag" 6 NAME = "enterprise_RemoraRequisitionServer" 7 TIME = "SHORT" 8 TEST_CATEGORY = "Functional" 9 TEST_CLASS = "enterprise" 10 TEST_TYPE = "server" 11 ATTRIBUTES = ('suite:hotrod, suite:hotrod-release, suite:bluestreak,' 12 'suite:bluestreak-release') 13 JOB_RETRIES = 3 14 15 DOC = """ 16 This test clears the TPM if necessary, kicks off a client side test that enrolls 17 a device as a remora device and clears the TPM again. Every time the TPM is 18 cleared, the system is rebooted. 19 """ 20 21 22 def run_test(machine): 23 host = hosts.create_host(machine) 24 job.run_test('enterprise_RemoraRequisitionServer', host=host) 25 26 27 parallel_simple(run_test, machines) 28