diff options
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 2 | ||||
-rw-r--r-- | Lib/test/test_linuxaudiodev.py | 3 | ||||
-rw-r--r-- | Lib/test/test_ossaudiodev.py | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index c60e824..00847fc 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -591,8 +591,10 @@ _expectations = { test_gl test_imgfile test_largefile + test_linuxaudiodev test_nis test_ntpath + test_ossaudiodev test_socketserver test_sunaudiodev test_unicode_file diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py index 9f44629..1a11e8f 100644 --- a/Lib/test/test_linuxaudiodev.py +++ b/Lib/test/test_linuxaudiodev.py @@ -1,3 +1,6 @@ +from test import test_support +test_support.requires('audio') + from test.test_support import verbose, findfile, TestFailed, TestSkipped import errno diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py index ed8f770..51fdab2 100644 --- a/Lib/test/test_ossaudiodev.py +++ b/Lib/test/test_ossaudiodev.py @@ -1,3 +1,6 @@ +from test import test_support +test_support.requires('audio') + from test.test_support import verbose, findfile, TestFailed, TestSkipped import errno |