blob: a7373d2c55b04895dc923f15475183842c938e18 [file] [log] [blame]
Keun young Park5eba08f2012-03-26 18:31:29 -07001<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2012 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<case name="dut_recording_spectrum" version="1.0" description="Check frequency spectrum for recording">
19 <setup>
Keun young Parkcf009302012-05-14 14:38:39 -070020 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
21 <process method="script:gen_random" input="consti:10000,consti:30000,consti:44100,consti:6000" output="id:sound1" />
Keun young Park5eba08f2012-03-26 18:31:29 -070022 <!-- Only for starting client app early. The data is not used -->
23 <sound id="sound2" type="sin:1:1000:2" preload="1"/>
24 </setup>
25 <action>
26 <sequential repeat="1" index="i">
27 <output device="host" id="sound1" gain="100" sync="start" waitforcompletion="0" />
Keun young Parkcf009302012-05-14 14:38:39 -070028 <sequential repeat="5" index="j">
Keun young Park5eba08f2012-03-26 18:31:29 -070029 <input device="host" id="host_in_$j" gain="100" time="6000" sync="start" />
30 <input device="DUT" id="dut_in_$j" gain="100" time="4000" sync="start" />
31 </sequential>
32 </sequential>
Keun young Parkcf009302012-05-14 14:38:39 -070033 <sequential repeat="5" index="k">
34 <!-- input: host record, device record, samping rate, low frequency in Hz, high frequency in Hz, allowed error for pass in smaller side, allowed error in bigger side%, output: min value in lower side calculated normalized to 1.0, max value in higher side, calculated amplitude ratio in mannitude only between low f to high f -->
keunyounga73be492013-05-24 19:13:47 -070035 <process method="script:check_spectrum" input="id:host_in_$k,id:dut_in_$k,consti:44100,consti:200,consti:4000,constf:95.0,constf:200.0" output="val:min_val_$k,val:max_val_$k,id:tf_$k" />
Keun young Park5eba08f2012-03-26 18:31:29 -070036 </sequential>
37 </action>
38 <save file="sound1,host_in_.*,dut_in_.*,tf_.*" report="min_val_.*,max_val_.*" />
39</case>