diff options
-rwxr-xr-x | Lib/test/regrtest.py | 1 | ||||
-rw-r--r-- | Lib/test/test_nis.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 0c6d522..4eb4a64 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1135,6 +1135,7 @@ class _ExpectedSkips: # These are broken tests, for now skipped on every platform. # XXX Fix these! self.expected.add('test_cProfile') + self.expected.add('test_nis') # expected to be skipped on every platform, even Linux if not os.path.supports_unicode_filenames: diff --git a/Lib/test/test_nis.py b/Lib/test/test_nis.py index 8a7efcf..1c17a4e 100644 --- a/Lib/test/test_nis.py +++ b/Lib/test/test_nis.py @@ -2,6 +2,8 @@ from test import support import unittest import nis +raise support.TestSkipped("test_nis hangs on Solaris") + class NisTests(unittest.TestCase): def test_maps(self): try: |