summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/test_lin.py
blob: 4b612a79935c870cc29907be54d3ee2e54508fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()