]> granicus.if.org Git - python/commitdiff
Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests...
authorMark Dickinson <dickinsm@gmail.com>
Sun, 21 Feb 2010 13:37:53 +0000 (13:37 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 21 Feb 2010 13:37:53 +0000 (13:37 +0000)
Lib/test/test_curses.py

index 414228211a14e9908dcc5555ff58516010db9648..69271de847412e3b25efa33f386bce43db86bbdd 100644 (file)
@@ -21,6 +21,12 @@ requires('curses')
 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')
 if not term or term == 'unknown':