Catch IOError for when the device file doesn't exist or the user doesn't have
permission to write to the device.
This commit is contained in:
parent
15d4e56c40
commit
1b2f62d139
|
@ -162,7 +162,7 @@ class OSSAudioDevTests(unittest.TestCase):
|
||||||
def test_main():
|
def test_main():
|
||||||
try:
|
try:
|
||||||
dsp = ossaudiodev.open('w')
|
dsp = ossaudiodev.open('w')
|
||||||
except ossaudiodev.error, msg:
|
except (ossaudiodev.error, IOError), msg:
|
||||||
if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY):
|
if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY):
|
||||||
raise TestSkipped(msg)
|
raise TestSkipped(msg)
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue