diff options
| author | Guido van Rossum <guido@python.org> | 2000-06-29 19:35:29 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2000-06-29 19:35:29 (GMT) |
| commit | 3e06ab1d447442a56af739a906546d8d1998dfdc (patch) | |
| tree | 23145a16354b8b2e59932767c6dc9a5b56bb12cf /Lib/dos-8x3/test_lin.py | |
| parent | 45cd9de2bb2faa96bb18eb11d20261d7d1b8c20e (diff) | |
| download | cpython-3e06ab1d447442a56af739a906546d8d1998dfdc.zip cpython-3e06ab1d447442a56af739a906546d8d1998dfdc.tar.gz cpython-3e06ab1d447442a56af739a906546d8d1998dfdc.tar.bz2 | |
The usual :)
Diffstat (limited to 'Lib/dos-8x3/test_lin.py')
| -rw-r--r-- | Lib/dos-8x3/test_lin.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Lib/dos-8x3/test_lin.py b/Lib/dos-8x3/test_lin.py new file mode 100644 index 0000000..4b612a7 --- /dev/null +++ b/Lib/dos-8x3/test_lin.py @@ -0,0 +1,20 @@ +from test_support import verbose, findfile, TestFailed +import linuxaudiodev +import os + +def play_sound_file(path): + fp = open(path, 'r') + data = fp.read() + fp.close() + try: + a = linuxaudiodev.open('w') + except linuxaudiodev.error, msg: + raise TestFailed, msg + else: + a.write(data) + a.close() + +def test(): + play_sound_file(findfile('audiotest.au')) + +test() |
