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