28 lines
788 B
Plaintext
28 lines
788 B
Plaintext
# Copyright 2018 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "felixe"
|
|
NAME = "enterprise_RemoraRequisitionDisplayUsageServer"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "enterprise"
|
|
TEST_TYPE = "server"
|
|
ATTRIBUTES = 'suite:hotrod-remora'
|
|
DEPENDENCIES='mimo'
|
|
JOB_RETRIES = 3
|
|
|
|
DOC = """
|
|
This test clears the TPM if necessary, kicks off a client side test that verify
|
|
that the enrollment screen is shown on the Mimo display. Every time the TPM is
|
|
cleared, the system is rebooted.
|
|
"""
|
|
|
|
|
|
def run_test(machine):
|
|
host = hosts.create_host(machine)
|
|
job.run_test('enterprise_RemoraRequisitionDisplayUsageServer', host=host)
|
|
|
|
|
|
parallel_simple(run_test, machines)
|