[Python-checkins] r80399 - python/branches/py3k-cdecimal/Lib/test/test_curses.py

stefan.krah python-checkins at python.org
Fri Apr 23 11:06:55 CEST 2010


Author: stefan.krah
Date: Fri Apr 23 11:06:55 2010
New Revision: 80399

Log:
Revert changes for testing issue #7384.

Modified:
   python/branches/py3k-cdecimal/Lib/test/test_curses.py

Modified: python/branches/py3k-cdecimal/Lib/test/test_curses.py
==============================================================================
--- python/branches/py3k-cdecimal/Lib/test/test_curses.py	(original)
+++ python/branches/py3k-cdecimal/Lib/test/test_curses.py	Fri Apr 23 11:06:55 2010
@@ -23,6 +23,11 @@
 curses = import_module('curses')
 curses.panel = import_module('curses.panel')
 
+# skip all these tests on FreeBSD: test_curses currently hangs the
+# FreeBSD buildbots, preventing other tests from running.  See issue
+# #7384.
+if 'freebsd' in sys.platform:
+    raise unittest.SkipTest('The curses module is broken on FreeBSD.  See http://bugs.python.org/issue7384.')
 
 # XXX: if newterm was supported we could use it instead of initscr and not exit
 term = os.environ.get('TERM')


More information about the Python-checkins mailing list