[Python-checkins] python/dist/src/Lib/test test_openpty.py,1.7,1.8

loewis@users.sourceforge.net loewis@users.sourceforge.net
Tue, 31 Dec 2002 10:05:18 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv27752/Lib/test

Modified Files:
	test_openpty.py 
Log Message:
Remove bogus test; the master is not a terminal on Solaris and HP-UX.


Index: test_openpty.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_openpty.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** test_openpty.py	23 Jul 2002 19:03:58 -0000	1.7
--- test_openpty.py	31 Dec 2002 18:05:15 -0000	1.8
***************
*** 13,18 ****
      raise TestSkipped, "No openpty() available."
  
- 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."
--- 13,16 ----