Home | History | Annotate | Download | only in enterprise_CFM_AutotestSmokeTest
      1 # Copyright 2017 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 from autotest_lib.server import utils
      6 
      7 AUTHOR = "dtosic (a] google.com, chromeos-meetings (a] google.com"
      8 NAME = "enterprise_CFM_AutotestSmokeTest"
      9 PURPOSE = ("Server-side smoke test used for tracking the stability of the "
     10            "Autotest framework on CFM platforms.")
     11 CRITERIA = "Fails if the Autotest framework doesn't work as expected."
     12 ATTRIBUTES = "suite:hotrod,suite:bluestreak-pre-cq"
     13 TIME = "SHORT"
     14 TEST_CATEGORY = "Functional"
     15 TEST_TYPE = "server"
     16 BUG_TEMPLATE = {
     17     "labels": ["OS-Chrome"],
     18 }
     19 
     20 DOC = """
     21 This test tracks the stability of the Auotest framework for server tests.
     22 The test opens a web browser, loads 'chrome://version' and verifies that nothing
     23 crashes.
     24 """
     25 
     26 def run_test(machine):
     27     host = hosts.create_host(machine)
     28     job.run_test('enterprise_CFM_AutotestSmokeTest', host=host)
     29 
     30 
     31 parallel_simple(run_test, machines)
     32 
     33