summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-02-21 13:37:53 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-02-21 13:37:53 (GMT)
commit45ad801ed0a4ec2554251b247fd7f506d6f815eb (patch)
tree2efa2ee418c2803be3b8365332941c0f666e4442 /Lib/test
parent82b34c5dbebdd4c39dd310056b20e89d2bed63ed (diff)
downloadcpython-45ad801ed0a4ec2554251b247fd7f506d6f815eb.zip
cpython-45ad801ed0a4ec2554251b247fd7f506d6f815eb.tar.gz
cpython-45ad801ed0a4ec2554251b247fd7f506d6f815eb.tar.bz2
Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete.
Diffstat (limited to 'Lib/test')
-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 4142282..69271de 100644
--- a/Lib/test/test_curses.py
+++ b/Lib/test/test_curses.py
@@ -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':