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