Skip to content

Commit 945e242

Browse files
committed
Merged revisions 78281 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78281 | mark.dickinson | 2010-02-21 13:37:53 +0000 (Sun, 21 Feb 2010) | 1 line Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete. ........
1 parent 57c45ac commit 945e242

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Lib/test/test_curses.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
curses = import_module('curses')
2424
curses.panel = import_module('curses.panel')
2525

26+
# skip all these tests on FreeBSD: test_curses currently hangs the
27+
# FreeBSD buildbots, preventing other tests from running. See issue
28+
# #7384.
29+
if 'freebsd' in sys.platform:
30+
raise unittest.SkipTest('The curses module is broken on FreeBSD. See http://bugs.python.org/issue7384.')
31+
2632
# XXX: if newterm was supported we could use it instead of initscr and not exit
2733
term = os.environ.get('TERM')
2834
if not term or term == 'unknown':

0 commit comments

Comments
 (0)