mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Move the check for openpty to the beginning.
This commit is contained in:
parent
59ba4299d0
commit
7d00099021
1 changed files with 5 additions and 5 deletions
|
@ -3,13 +3,13 @@
|
|||
import os, unittest
|
||||
from test.test_support import run_unittest, TestSkipped
|
||||
|
||||
if not hasattr(os, "openpty"):
|
||||
raise TestSkipped, "No openpty() available."
|
||||
|
||||
|
||||
class OpenptyTest(unittest.TestCase):
|
||||
def test(self):
|
||||
try:
|
||||
master, slave = os.openpty()
|
||||
except AttributeError:
|
||||
raise TestSkipped, "No openpty() available."
|
||||
|
||||
master, slave = os.openpty()
|
||||
if not os.isatty(slave):
|
||||
self.fail("Slave-end of pty is not a terminal.")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue