summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/process/test_poll.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests/process/test_poll.py')
-rw-r--r--pym/portage/tests/process/test_poll.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/pym/portage/tests/process/test_poll.py b/pym/portage/tests/process/test_poll.py
index 8a52f4577..96749d567 100644
--- a/pym/portage/tests/process/test_poll.py
+++ b/pym/portage/tests/process/test_poll.py
@@ -51,19 +51,3 @@ class PipeReaderTestCase(TestCase):
task_scheduler.run()
self._assertEqual(test_string, consumer.getvalue())
-
-class PtyReaderTestCase(PipeReaderTestCase):
-
- def _assertEqual(self, test_string, consumer_value):
- if test_string != consumer_value:
- # This test is expected to fail on some operating systems
- # such as Darwin that do not support poll() on pty devices.
- self.todo = True
- self.assertEqual(test_string, consumer_value)
-
- def _create_pipe(self):
-
- got_pty, master_fd, slave_fd = \
- portage._create_pty_or_pipe(copy_term_size=sys.stdout.fileno())
-
- return (master_fd, slave_fd)