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