diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-05 07:16:13 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-05 07:16:13 (GMT) |
commit | c6d1f9100f8cb80dec5b1a454d3bdb54f6f76f98 (patch) | |
tree | 33e04b3b8bc04f80aff0147232029f04204fb3c5 | |
parent | f2d66fe1ec51ac618068f7f035eab7f4053aaef1 (diff) | |
download | cpython-c6d1f9100f8cb80dec5b1a454d3bdb54f6f76f98.zip cpython-c6d1f9100f8cb80dec5b1a454d3bdb54f6f76f98.tar.gz cpython-c6d1f9100f8cb80dec5b1a454d3bdb54f6f76f98.tar.bz2 |
If the audio file does not exist, the test should be skipped. Will backport.
-rw-r--r-- | Lib/test/test_linuxaudiodev.py | 2 | ||||
-rw-r--r-- | Lib/test/test_ossaudiodev.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py index 1a11e8f..fe902b5 100644 --- a/Lib/test/test_linuxaudiodev.py +++ b/Lib/test/test_linuxaudiodev.py @@ -28,7 +28,7 @@ def play_sound_file(path): try: a = linuxaudiodev.open('w') except linuxaudiodev.error, msg: - if msg[0] in (errno.EACCES, errno.ENODEV, errno.EBUSY): + if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): raise TestSkipped, msg raise TestFailed, msg diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py index f668eb4..8810516 100644 --- a/Lib/test/test_ossaudiodev.py +++ b/Lib/test/test_ossaudiodev.py @@ -45,7 +45,7 @@ def play_sound_file(data, rate, ssize, nchannels): try: dsp = ossaudiodev.open('w') except IOError, msg: - if msg[0] in (errno.EACCES, errno.ENODEV, errno.EBUSY): + if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY): raise TestSkipped, msg raise TestFailed, msg |