1# Copyright 2019 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 5from autotest_lib.server import utils 6 7AUTHOR = "chromeos-chameleon" 8NAME = "audio_AudioSanityCheck" 9PURPOSE = "Sanity check for behavior after a suspension." 10CRITERIA = """ 11This test will fail if functions that audio tests rely on are broken 12after a suspension. 13""" 14ATTRIBUTES = "suite:chameleon_audio_unstable" 15TIME = "SHORT" 16TEST_CATEGORY = "Functional" 17TEST_CLASS = "audio" 18TEST_TYPE = "server" 19DEPENDENCIES = 'chameleon, audio_board' 20JOB_RETRIES = 2 21 22DOC = """ 23This test remotely tests if some functions, audio tests rely on, work correctly 24after a suspension. 25""" 26 27def run(machine): 28 host = hosts.create_host(machine) 29 job.run_test("audio_AudioSanityCheck", host=host) 30 31parallel_simple(run, machines) 32