[Python-3000-checkins] r65888 - in python/branches/py3k/Lib/test: regrtest.py test_nis.py

benjamin.peterson python-3000-checkins at python.org
Wed Aug 20 01:02:39 CEST 2008


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:


More information about the Python-3000-checkins mailing list