1 # Copyright 2015 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 6 AUTHOR = "kathrelkeld" 7 NAME = "stress_ClientTestReboot.bluetooth" 8 TIME = "SHORT" 9 TEST_CATEGORY = "Functional" 10 TEST_CLASS = "Stress" 11 TEST_TYPE = "server" 12 ATTRIBUTES = 'suite:bluetooth, suite:bluetooth_stress' 13 14 DOC = """ 15 This test reboots the machine and checks whether the bluetooth adapter comes up. 16 """ 17 18 def run_reboot_stress(machine): 19 job.run_test('stress_ClientTestReboot', client_ip=machine, 20 testname='bluetooth_AdapterSanity', loops=100) 21 22 parallel_simple(run_reboot_stress, machines) 23