Discussion:
[Python-3000-checkins] r65888 - in python/branches/py3k/Lib/test: regrtest.py test_nis.py
benjamin.peterson
2008-08-19 23:02:39 UTC
Permalink
Author: benjamin.peterson
Date: Wed Aug 20 01:02:38 2008
New Revision: 65888

Log:
disable test_nis; it hangs

Modified:
python/branches/py3k/Lib/test/regrtest.py
python/branches/py3k/Lib/test/test_nis.py

Modified: python/branches/py3k/Lib/test/regrtest.py
==============================================================================
--- python/branches/py3k/Lib/test/regrtest.py (original)
+++ python/branches/py3k/Lib/test/regrtest.py Wed Aug 20 01:02:38 2008
@@ -1135,6 +1135,7 @@
# 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:

Modified: python/branches/py3k/Lib/test/test_nis.py
==============================================================================
--- python/branches/py3k/Lib/test/test_nis.py (original)
+++ python/branches/py3k/Lib/test/test_nis.py Wed Aug 20 01:02:38 2008
@@ -2,6 +2,8 @@
import unittest
import nis

+raise support.TestSkipped("test_nis hangs on Solaris")
+
class NisTests(unittest.TestCase):
def test_maps(self):
try:

Loading...