blob: 60aac3fb260115dabbb0d6ea3d5bd41531649931 [file] [log] [blame]
Keun young Park4bbb5d72012-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="test_io" version="1.0" description="Test Input / Output">
19 <setup> <!-- 1 setup -->
20 <!-- prepare sound source id: to be used in output, sine 1000Hz, 1000ms long -->
21 <sound id="sound1" type="sin:10000:1000:1000" preload="1" />
22 </setup>
23
24 <action> <!-- 1 action -->
25 <!-- equivalent of for loop. all children will be completed before moving to the next
26 stage.repeat up to 100 times unless stopped by some condition -->
27 <sequential repeat="1" index="i">
28 <output device="host" id="sound1" gain="100" sync="start"/>
29 <output device="DUT" id="sound1" gain="100" sync="start"/>
30 <input device="host" id="host1" gain="100" time="500" sync="start"/>
31 <input device="DUT" id="device1" gain="100" time="500" sync="start"/>
32 </sequential>
33 <sequential repeat="1" index="i2">
34 <process method="builtin:rms_mva" input="id:host1,consti:0,consti:0" output="val:rms_host" />
35 <process method="builtin:rms_mva" input="id:device1,consti:0,consti:20000" output="val:rms_device" />
36 </sequential>
37 </action>
38 <save file="host1,device1" report="rms_.*"/>
39</case>