diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_curses.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 9273ba8..57d4e8b 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -23,6 +23,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': |