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