alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] alsabat: test scripts and reference amixer config files
@ 2016-08-15  5:24 focus.luo
  2016-08-15  5:24 ` [PATCH v2 1/2] alsabat: automation test scripts focus.luo
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: focus.luo @ 2016-08-15  5:24 UTC (permalink / raw)
  To: alsa-devel; +Cc: Focus Luo, liam.r.girdwood

From: Focus Luo <focus.luo@linux.intel.com>

The patch set supplies some automated test scripts and reference amixer config
files for linux audio driver testing by using alsa-bat as test tool on Intel
platforms.

The first patch includes automated test scripts for linux audio driver based
on alsa-lib interface by using alsabat as test tool. It supports analog audio
and display audio(HDMI/DP) interface.

The second patch supplies some amixer reference config file on Intel platforms.

Focus Luo (2):
  alsabat: automation test scripts
  alsabat: add amixer config files

 bat/Makefile.am                                |   1 +
 bat/tests/Makefile.am                          |  11 +
 bat/tests/README                               |  32 ++
 bat/tests/alsabat_main.sh                      | 178 ++++++++++
 bat/tests/analog_audio_playback_and_capture.sh |  84 +++++
 bat/tests/asound_state/Makefile.am             |   6 +
 bat/tests/asound_state/asound.state.Broadwell  | 439 +++++++++++++++++++++++++
 bat/tests/asound_state/asound.state.Haswell    | 342 +++++++++++++++++++
 bat/tests/asound_state/asound.state.Skylake    | 437 ++++++++++++++++++++++++
 bat/tests/dp_audio_playback.sh                 |  83 +++++
 bat/tests/dp_audio_subdevice_number.sh         |  68 ++++
 bat/tests/hdmi_audio_playback.sh               |  81 +++++
 bat/tests/hdmi_audio_subdevice_number.sh       |  65 ++++
 bat/tests/map_test_case                        |   8 +
 configure.ac                                   |   3 +-
 15 files changed, 1837 insertions(+), 1 deletion(-)
 create mode 100644 bat/tests/Makefile.am
 create mode 100644 bat/tests/README
 create mode 100755 bat/tests/alsabat_main.sh
 create mode 100755 bat/tests/analog_audio_playback_and_capture.sh
 create mode 100644 bat/tests/asound_state/Makefile.am
 create mode 100644 bat/tests/asound_state/asound.state.Broadwell
 create mode 100644 bat/tests/asound_state/asound.state.Haswell
 create mode 100644 bat/tests/asound_state/asound.state.Skylake
 create mode 100755 bat/tests/dp_audio_playback.sh
 create mode 100755 bat/tests/dp_audio_subdevice_number.sh
 create mode 100755 bat/tests/hdmi_audio_playback.sh
 create mode 100755 bat/tests/hdmi_audio_subdevice_number.sh
 create mode 100644 bat/tests/map_test_case

-- 
1.9.1

^ permalink raw reply	[flat|nested] 5+ messages in thread
* [PATCH v2 0/2] alsabat: test scripts and reference amixer config files
@ 2016-08-22 16:16 focus.luo
  2016-08-22 16:16 ` [PATCH v2 2/2] alsabat: add " focus.luo
  0 siblings, 1 reply; 5+ messages in thread
From: focus.luo @ 2016-08-22 16:16 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, focus.luo, Focus Luo, liam.r.girdwood

From: Focus Luo <focus.luo@linux.intel.com>

The patch set supplies some automated test scripts and reference amixer config
files for linux audio driver testing by using alsa-bat as test tool on Intel
platforms.

The first patch includes automated test scripts for linux audio driver based
on alsa-lib interface by using alsabat as test tool. It supports analog audio
and display audio(HDMI/DP) interface.

The second patch supplies some amixer reference config file on Intel platforms.

Focus Luo (2):
  alsabat: automation test scripts
  alsabat: add amixer config files

 bat/Makefile.am                                |   1 +
 bat/tests/Makefile.am                          |  11 +
 bat/tests/README                               |  32 ++
 bat/tests/alsabat_main.sh                      | 178 ++++++++++
 bat/tests/analog_audio_playback_and_capture.sh |  84 +++++
 bat/tests/asound_state/Makefile.am             |   6 +
 bat/tests/asound_state/asound.state.Broadwell  | 439 +++++++++++++++++++++++++
 bat/tests/asound_state/asound.state.Haswell    | 342 +++++++++++++++++++
 bat/tests/asound_state/asound.state.Skylake    | 437 ++++++++++++++++++++++++
 bat/tests/dp_audio_playback.sh                 |  83 +++++
 bat/tests/dp_audio_subdevice_number.sh         |  68 ++++
 bat/tests/hdmi_audio_playback.sh               |  81 +++++
 bat/tests/hdmi_audio_subdevice_number.sh       |  65 ++++
 bat/tests/map_test_case                        |   8 +
 configure.ac                                   |   3 +-
 15 files changed, 1837 insertions(+), 1 deletion(-)
 create mode 100644 bat/tests/Makefile.am
 create mode 100644 bat/tests/README
 create mode 100755 bat/tests/alsabat_main.sh
 create mode 100755 bat/tests/analog_audio_playback_and_capture.sh
 create mode 100644 bat/tests/asound_state/Makefile.am
 create mode 100644 bat/tests/asound_state/asound.state.Broadwell
 create mode 100644 bat/tests/asound_state/asound.state.Haswell
 create mode 100644 bat/tests/asound_state/asound.state.Skylake
 create mode 100755 bat/tests/dp_audio_playback.sh
 create mode 100755 bat/tests/dp_audio_subdevice_number.sh
 create mode 100755 bat/tests/hdmi_audio_playback.sh
 create mode 100755 bat/tests/hdmi_audio_subdevice_number.sh
 create mode 100644 bat/tests/map_test_case

-- 
1.9.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-08-22 15:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-15  5:24 [PATCH v2 0/2] alsabat: test scripts and reference amixer config files focus.luo
2016-08-15  5:24 ` [PATCH v2 1/2] alsabat: automation test scripts focus.luo
2016-08-15  5:24 ` [PATCH v2 2/2] alsabat: add amixer config files focus.luo
2016-08-15  7:30 ` [PATCH v2 0/2] alsabat: test scripts and reference " Liam Girdwood
  -- strict thread matches above, loose matches on Subject: below --
2016-08-22 16:16 focus.luo
2016-08-22 16:16 ` [PATCH v2 2/2] alsabat: add " focus.luo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).