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