blob: 1d00fcfa073f24d51de3b5e57c0bd130e03baa52 [file] [log] [blame]
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
AUTHOR = "chromeos-chameleon"
NAME = "audio_AudioTestAssumptionCheck"
PURPOSE = "Basic functionality check for behavior after a suspension."
CRITERIA = """
This test will fail if functions that audio tests rely on are broken
after a suspension.
"""
#ATTRIBUTES = "chameleon_audio_unstable"
TIME = "SHORT"
TEST_CATEGORY = "Functional"
TEST_CLASS = "audio"
TEST_TYPE = "server"
DEPENDENCIES = 'chameleon, audio_board'
JOB_RETRIES = 2
DOC = """
This test remotely tests if some functions, audio tests rely on, work correctly
after a suspension.
"""
def run(machine):
host = hosts.create_host(machine)
job.run_test("audio_AudioTestAssumptionCheck", host=host)
parallel_simple(run, machines)