1# Copyright 2014 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 5AUTHOR = 'drewry, gauravsh' 6NAME = 'platform_CheckTLSDateProcesses' 7ATTRIBUTES = "suite:bvt-cq" 8TIME = 'SHORT' 9TEST_TYPE = 'client' 10JOB_RETRIES = 2 11 12DOC = """ 13This test has a static list of process names that should be running 14on a good Chrome OS Core image running with network time support. It 15fails if any of these are not running at the time of the test. 16""" 17 18TLSDATE_PROCESSES = ['tlsdated'] 19 20job.run_test('platform_CheckCriticalProcesses', process_list=TLSDATE_PROCESSES) 21