summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-02-21 13:42:03 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-02-21 13:42:03 (GMT)
commit945e242d06eed875fc9216112e971cf17fa74d0b (patch)
tree228ef6ffd70f528449f24f9ff78824d9217c3d4f /Lib
parent57c45ac5e508cfa62efab9c372d1c08544f2f5b4 (diff)
downloadcpython-945e242d06eed875fc9216112e971cf17fa74d0b.zip
cpython-945e242d06eed875fc9216112e971cf17fa74d0b.tar.gz
cpython-945e242d06eed875fc9216112e971cf17fa74d0b.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.py6
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':