Catch sunaudiodev.error on open() and re-raise TestFailed exception.

This commit is contained in:
Barry Warsaw 1997-01-13 20:53:46 +00:00
parent 59e066e73b
commit 3de721d073
1 changed files with 7 additions and 3 deletions

View File

@ -14,7 +14,11 @@ def play_sound_file(path):
fp = open(path, 'r')
data = fp.read()
fp.close()
try:
a = sunaudiodev.open('w')
except sunaudiodev.error, msg:
raise TestFailed, msg
else:
a.write(data)
a.close()