测试指南
运行测试用例
audio_player_demo
audio_player_demo 主要功能是播放 MP3 和 WAV 文件。
测试准备条件
准备一张 SD 卡,将测试文件放到 SD 卡上。
测试步骤
- 挂载 SD 卡 插入 SD 卡启动,若启动后,系统没有自动挂载 SD 卡,使用下面命令挂载:
bash
mount sd0/sd0p0 / elm # 将 SD 卡挂在到根目录下,"sd0 或 sd0p0" - SD 卡设备节点, "/" - 根目录 , "elm"-fat32 文件系统
1
- 运行 audio_player_demo
bash
Example1(test file for 10 time): audio_player_demo -i /mnt/audio/test.mp3 -l 10
Example2(test dir for 1 time): audio_player_demo -t /mnt/audio
audio_player_demo -h #查看使用说明
-i input stream file name
-t directory of test files
-l loop time
-h help
---------------------------------------------------------------------------------------
-------------------------------control key while playing-------------------------------
--------------------------------------------------------------------------------------
('s'): stop current
('p'): pause
('r'): resume
('+'): volum+5
('-'): volum-5
('e'): eixt app
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
测试预期
WAV 和 MP3 文件播放正常。