diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-02-21 13:40:57 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-02-21 13:40:57 (GMT) |
commit | 4fadf732459652e81718cab90996cd3b2d1d3f09 (patch) | |
tree | fb5432245bd32c5a08f19b8b1af604049d881d8b /Lib | |
parent | 6d2e3f4dcf5a361e85dca4bbe9cbe7be20e6e4dd (diff) | |
download | cpython-4fadf732459652e81718cab90996cd3b2d1d3f09.zip cpython-4fadf732459652e81718cab90996cd3b2d1d3f09.tar.gz cpython-4fadf732459652e81718cab90996cd3b2d1d3f09.tar.bz2 |
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.
........
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 b2ea4df..cdb90db 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -19,6 +19,12 @@ import curses.panel from test.test_support import requires, TestSkipped requires('curses') +# 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': |