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_AudioTestAssumptionCheck" 9PURPOSE = "Basic functionality check for behavior after a suspension." 10CRITERIA = """ 11This test will fail if functions that audio tests rely on are broken 12after a suspension. 13""" 14#ATTRIBUTES = "chameleon_audio_unstable" 15TIME = "SHORT" 16TEST_CATEGORY = "Functional" 17TEST_CLASS = "audio" 18TEST_TYPE = "server" 19DEPENDENCIES = 'chameleon, audio_board' 20JOB_RETRIES = 2 21PY_VERSION = 3 22 23DOC = """ 24This test remotely tests if some functions, audio tests rely on, work correctly 25after a suspension. 26""" 27 28def run(machine): 29 host = hosts.create_host(machine) 30 job.run_test("audio_AudioTestAssumptionCheck", host=host) 31 32parallel_simple(run, machines) 33