2000-09-01 16:25:51 -03:00
|
|
|
# Test to see if openpty works. (But don't worry if it isn't available.)
|
1996-07-22 12:23:25 -03:00
|
|
|
|
2000-09-01 16:25:51 -03:00
|
|
|
import os
|
|
|
|
from test_support import verbose, TestFailed, TestSkipped
|
1996-07-22 12:23:25 -03:00
|
|
|
|
2000-09-01 16:25:51 -03:00
|
|
|
try:
|
|
|
|
if verbose:
|
|
|
|
print "Calling os.openpty()"
|
|
|
|
master, slave = os.openpty()
|
|
|
|
if verbose:
|
|
|
|
print "(master, slave) = (%d, %d)"%(master, slave)
|
|
|
|
except AttributeError:
|
|
|
|
raise TestSkipped, "No openpty() available."
|
2000-06-29 16:35:29 -03:00
|
|
|
|
2000-09-01 16:25:51 -03:00
|
|
|
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."
|
2000-06-29 16:35:29 -03:00
|
|
|
|
2000-09-01 16:25:51 -03:00
|
|
|
os.write(slave, 'Ping!')
|
|
|
|
print os.read(master, 1024)
|
2000-06-29 16:35:29 -03:00
|
|
|
|