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