blob: a910f98b54ef33f51e2c9b143ca57e858162871f [file] [log] [blame]
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
import portage
from portage.tests import TestCase
from portage.util._pty import _can_test_pty_eof, _test_pty_eof
class PtyEofTestCase(TestCase):
def testPtyEof(self):
# This tests if the following python issue is fixed yet:
# http://bugs.python.org/issue5380
# Since it might not be fixed, mark as todo.
self.todo = True
# The result is only valid if openpty does not raise EnvironmentError.
if _can_test_pty_eof():
try:
self.assertEqual(_test_pty_eof(), True)
except EnvironmentError:
pass