Home | History | Annotate | Download | only in enterprise_KioskEnrollmentServer
      1 # Copyright 2016 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 = "harpreet"
      6 NAME = "enterprise_KioskEnrollmentServer"
      7 TIME = "SHORT"
      8 TEST_CATEGORY = "Functional"
      9 TEST_CLASS = "enterprise"
     10 TEST_TYPE = "server"
     11 ATTRIBUTES = "suite:enterprise"
     12 DEPENDENCIES = "chromesign"
     13 
     14 DOC = """
     15 This test clears the TPM if necessary, kicks off a client side test that enrolls
     16 a device in enterprise and clears the TPM again. Every time the TPM is cleared,
     17 the system is rebooted.
     18 """
     19 
     20 
     21 def run_test(machine):
     22     host = hosts.create_host(machine)
     23     job.run_test('enterprise_KioskEnrollmentServer', host=host)
     24 
     25 
     26 parallel_simple(run_test, machines)
     27