diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-10 04:22:57 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-10 04:22:57 (GMT) |
commit | 1f2d4640b874940cae74c2b1549a6a1106e2a058 (patch) | |
tree | 365797ea0884ea663b840f0fd4bfe77cddd2f0da /Lib | |
parent | a5bbb0089a60a38399de26e7deefd181f1e38d65 (diff) | |
download | cpython-1f2d4640b874940cae74c2b1549a6a1106e2a058.zip cpython-1f2d4640b874940cae74c2b1549a6a1106e2a058.tar.gz cpython-1f2d4640b874940cae74c2b1549a6a1106e2a058.tar.bz2 |
Added test for linnuxaudiodev module; directly adapted from sunaudiodev
test. Someone with more Linux audio knowledge should at least take a
brief look at it.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/output/test_linuxaudiodev | 1 | ||||
-rw-r--r-- | Lib/test/test_linuxaudiodev.py | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/Lib/test/output/test_linuxaudiodev b/Lib/test/output/test_linuxaudiodev new file mode 100644 index 0000000..8d8cb70 --- /dev/null +++ b/Lib/test/output/test_linuxaudiodev @@ -0,0 +1 @@ +test_linuxaudiodev diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py new file mode 100644 index 0000000..4b612a7 --- /dev/null +++ b/Lib/test/test_linuxaudiodev.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() |