diff options
-rw-r--r-- | pym/portage/tests/ebuild/test_pty_eof.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pym/portage/tests/ebuild/test_pty_eof.py b/pym/portage/tests/ebuild/test_pty_eof.py index c8de3e2a7..0b0bbdb35 100644 --- a/pym/portage/tests/ebuild/test_pty_eof.py +++ b/pym/portage/tests/ebuild/test_pty_eof.py @@ -1,6 +1,8 @@ # Copyright 2009-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +import platform + from portage.tests import TestCase from portage.util._pty import _can_test_pty_eof, _test_pty_eof @@ -37,6 +39,10 @@ class PtyEofFdopenUnBufferedTestCase(TestCase): self.fail(skip_reason) return + if platform.python_implementation() == 'PyPy': + # https://bugs.pypy.org/issue956 + self.todo = True + # The result is only valid if openpty does not raise EnvironmentError. if _can_test_pty_eof(): try: |