Home | History | Annotate | Download | only in audio_CRASFormatConversion
      1 # Copyright (c) 2011 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 = 'The Chromium OS Authors'
      6 NAME = 'audio_CRASFormatConversion'
      7 PURPOSE = 'Test playing audio with the CRAS test client.'
      8 CRITERIA = """
      9 Check that converting between different sample rates doesn't crash.
     10 """
     11 TIME='SHORT'
     12 TEST_CATEGORY = 'PLAYBACKCAPTURE'
     13 TEST_CLASS = 'audio'
     14 TEST_TYPE = 'client'
     15 ATTRIBUTES = "suite:audio"
     16 SUITE = 'audio'
     17 DEPENDENCIES = 'audio_loopback_dongle'
     18 
     19 DOC = """
     20 NOTE: For this test to pass you need to have the line out looped back to mic-in.
     21 This can be through a 3.5mm male-to-male cable or a loopback dongle depending on
     22 your device.
     23 """
     24 
     25 TEST_SAMPLE_RATES = [
     26         8000, 16000, 22050, 32000, 44100, 48000, 88200, 96000, 192000]
     27 
     28 job.run_test(
     29         'audio_CRASFormatConversion',
     30         test_sample_rates=TEST_SAMPLE_RATES,
     31         constraints=['min_rms_value > 0.05'])
     32