From: Fred Drake Date: Sat, 10 Jun 2000 04:22:57 +0000 (+0000) Subject: Added test for linnuxaudiodev module; directly adapted from sunaudiodev X-Git-Tag: v2.0b1~1523 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f2d4640b874940cae74c2b1549a6a1106e2a058;p=python 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. --- diff --git a/Lib/test/output/test_linuxaudiodev b/Lib/test/output/test_linuxaudiodev new file mode 100644 index 0000000000..8d8cb70831 --- /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 0000000000..4b612a7993 --- /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()