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