Home | History | Annotate | Download | only in platform_ActivateDate
      1 from autotest_lib.client.common_lib import utils
      2 
      3 AUTHOR = "shapiroc (a] chromium.org"
      4 NAME = "platform_ActivateDate"
      5 TIME = "SHORT"
      6 TEST_CATEGORY = "Functional"
      7 TEST_CLASS = "platform"
      8 TEST_TYPE = "server"
      9 ATTRIBUTES = "suite:regression"
     10 
     11 DOC = """
     12 This test verifies that activate_date, which is only run once ever on the
     13 platform, executes correctly and sets the activation date correctly.
     14 """
     15 
     16 def run_test(machine):
     17     host = hosts.create_host(machine)
     18     job.run_test("platform_ActivateDate", host=host)
     19 
     20 parallel_simple(run_test, machines)
     21