~roadmr/ubuntu/oneiric/checkbox/0.12.8

« back to all changes in this revision

Viewing changes to jobs/audio.txt.in

  • Committer: Mathieu Trudel-Lapierre
  • Date: 2011-08-10 22:53:09 UTC
  • mfrom: (30.1.1 exp-ubuntu-checkbox)
  • Revision ID: mathieu-tl@ubuntu.com-20110810225309-6mis2ukos72cfrzi
Tags: 0.12.4
New upstream release (LP: #824180):
[Brendan Donegan]
* Refactored job definition files.
* Fixed dependencies and test naming.
* Added Online CPU before/after suspend test.
* Automated wireless tests.
* Removed redundant sru_suite.txt, updated dependencies accordingly.
* Automated bluetooth_obex tests.
[Daniel Manrique]
* Further improvements to make frontend/backend communication more reliable.
  Prevents stuck backends, failure to close the GUI due to lack of reply
  from the backend, and test specifying "user" not being run.
* scripts/keyboard_test modified to account for pygi-related GTK API
  changes. (LP: #804369)
* scripts/sleep_test: improve handling of NetworkManager DBus API
  changes. (LP: #808423)
* scripts/cdimage_resource: properly handle releases with "LTS" in their
  name (LP: #814085)
* Updated minimum_resolution test as per latest system requirements, leaving
  just one unified test. (LP: #767166)
[Javier Collado]
* Checkbox exits with EX_NOINPUT if a whitelist or blacklist file is
  specified and cannot be found.
* Deselect a test suite automatically when none of its children is selected,
  in the GTK interface. (LP: #651878)
* Make the "Next" button the default action when Enter is pressed, to 
  streamline testing with the GTK interface.
[Marc Tardif]
* Fixed udevam not being found because /sbin not in PATH (LP: #597305)
* Fixed hardware attachments for udev and dmi (LP: #822682)
[Sylvain Pineau]
* Expose the message store to other plugins, via firing an expose-msgstore
  event.
[Andrew Faulkner]
* Fix description for nautilus_file_create job (LP: #821141) 
[Kenneth Wimer]
* New header image that follows brand guidelines (LP: #554202)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
plugin: manual
2
 
name: list_audio_devices
 
2
name: audio/list_devices
3
3
requires:
4
4
 device.category == 'AUDIO'
5
5
 package.name == 'alsa-base'
12
12
 Is this correct?
13
13
 
14
14
plugin: manual
15
 
name: playback_auto
16
 
depends: list_audio_devices
 
15
name: audio/playback_auto
 
16
depends: audio/list_devices
17
17
requires:
18
18
 device.category == 'AUDIO'
19
19
 package.name == 'alsa-base' and package.name == 'python-gst0.10'
24
24
 Did you hear a sound and was that sound free of any distortion, clicks or other strange noises?
25
25
 
26
26
plugin: manual
27
 
name: playback_headphones
28
 
depends: list_audio_devices
 
27
name: audio/playback_headphones
 
28
depends: audio/list_devices
29
29
requires:
30
30
 device.category == 'AUDIO'
31
31
 package.name == 'alsa-base' and package.name == 'python-gst0.10'
38
38
 Did you hear a sound through the headphones and did the sound play without any distortion, clicks or other strange noises from your headphones?
39
39
 
40
40
plugin: manual
41
 
name: alsa_record_playback_internal
42
 
depends: playback_auto
 
41
name: audio/alsa_record_playback_internal
 
42
depends: audio/playback_auto
43
43
requires:
44
44
 device.category == 'AUDIO'
45
45
 package.name == 'alsa-base'
50
50
 Did you hear your speech played back?
51
51
 
52
52
plugin: manual
53
 
name: alsa_record_playback_external
54
 
depends: playback_headphones
 
53
name: audio/alsa_record_playback_external
 
54
depends: audio/playback_headphones
55
55
requires:
56
56
 device.category == 'AUDIO'
57
57
 package.name == 'alsa-base'
61
61
 .
62
62
 Did you hear your speech played back?
63
63
 
64
 
 plugin: shell
65
 
 name: audio_detect_silence
66
 
 requires:
67
 
  package.name == 'sox'
68
 
  device.category == 'AUDIO'
69
 
 command: audio_detect_silence
70
 
 description:
71
 
  Play back a sound on the default output and listen for it on the \
72
 
  default input.  This makes the most sense when the output and input \
73
 
  are directly connected, as with a patch cable.
 
64
plugin: manual
 
65
name: audio/alsa_record_playback_usb
 
66
requires:
 
67
 device.category == 'AUDIO'
 
68
 package.name == 'alsa-base'
 
69
command: alsa_record_playback
 
70
_description:
 
71
 Connect a USB audio device to your system.  Then open the volume control application by left-clicking on the speaker icon in the panel and selecting "Sound Preferences".  Select the "Input" tab and choose your USB device.  Select the "Output" tab and choose your USB device.  When you are done, select Test, then speak into the microphone.  After a few seconds, your speech will be played back to you.
 
72
 .
 
73
 Did you hear your speech played back?
 
74
 
 
75
plugin: shell
 
76
name: audio/detect_silence
 
77
requires:
 
78
 package.name == 'sox'
 
79
 device.category == 'AUDIO'
 
80
command: audio_detect_silence
 
81
_description:
 
82
 Play back a sound on the default output and listen for it on the \
 
83
 default input.  This makes the most sense when the output and input \
 
84
 are directly connected, as with a patch cable.