cpython/Lib/dos-8x3/test_sun.py

34 lines
751 B
Python
Raw Normal View History

1997-04-02 02:13:34 -04:00
from test_support import verbose, TestFailed
import sunaudiodev
import os
def findfile(file):
1998-03-26 18:14:20 -04:00
if os.path.isabs(file): return file
import sys
path = sys.path
try:
path = [os.path.dirname(__file__)] + path
except NameError:
pass
for dn in path:
fn = os.path.join(dn, file)
if os.path.exists(fn): return fn
return file
1997-04-02 02:13:34 -04:00
def play_sound_file(path):
fp = open(path, 'r')
data = fp.read()
fp.close()
try:
1998-03-26 18:14:20 -04:00
a = sunaudiodev.open('w')
1997-04-02 02:13:34 -04:00
except sunaudiodev.error, msg:
1998-03-26 18:14:20 -04:00
raise TestFailed, msg
1997-04-02 02:13:34 -04:00
else:
1998-03-26 18:14:20 -04:00
a.write(data)
a.close()
1997-04-02 02:13:34 -04:00
def test():
play_sound_file(findfile('audiotest.au'))
test()