mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P)
This commit is contained in:
parent
616607a987
commit
baf2663e44
2 changed files with 8 additions and 10 deletions
|
|
@ -12,11 +12,10 @@
|
|||
except AttributeError:
|
||||
raise ImportError, "No openpty() available."
|
||||
|
||||
## # Please uncomment these if os.isatty() is added.
|
||||
## if not os.isatty(master):
|
||||
## raise TestFailed, "Master-end of pty is not a terminal."
|
||||
## if not os.isatty(slave):
|
||||
## raise TestFailed, "Slave-end of pty is not a terminal."
|
||||
if not os.isatty(master):
|
||||
raise TestFailed, "Master-end of pty is not a terminal."
|
||||
if not os.isatty(slave):
|
||||
raise TestFailed, "Slave-end of pty is not a terminal."
|
||||
|
||||
os.write(slave, 'Ping!')
|
||||
print os.read(master, 1024)
|
||||
|
|
|
|||
|
|
@ -27,11 +27,10 @@ def debug(msg):
|
|||
# " An optional feature could not be imported " ... ?
|
||||
raise ImportError, "Pseudo-terminals (seemingly) not functional."
|
||||
|
||||
## # Please uncomment these if os.isatty() is added.
|
||||
## if not os.isatty(master_fd):
|
||||
## raise TestFailed, "master_fd is not a tty"
|
||||
## if not os.isatty(slave_fd):
|
||||
## raise TestFailed, "slave_fd is not a tty"
|
||||
if not os.isatty(master_fd):
|
||||
raise TestFailed, "master_fd is not a tty"
|
||||
if not os.isatty(slave_fd):
|
||||
raise TestFailed, "slave_fd is not a tty"
|
||||
|
||||
debug("Writing to slave_fd")
|
||||
os.write(slave_fd, TEST_STRING_1) # should check return value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue