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 = 'wiley, avakulenko' 6 NAME = 'platform_CheckWiFiBootstrappingProcesses' 7 TIME = 'SHORT' 8 TEST_TYPE = 'client' 9 ATTRIBUTES = "suite:tendo_experimental" 10 SUITE='tendo_experimental' 11 12 DOC = """ 13 This test has a static list of process names that should be running 14 on a good Chrome OS Core image with WiFi bootstrapping support. 15 It fails if any of these are not running at the time of the test. 16 """ 17 18 WIFI_BOOTSTRAPPING_PROCESSES = [ 19 'apmanager', 20 'avahi-daemon', 21 'buffet', 22 'dbus-daemon', 23 'peerd', 24 'shill', 25 ] 26 27 job.run_test('platform_CheckCriticalProcesses', 28 process_list=WIFI_BOOTSTRAPPING_PROCESSES) 29