From: Thomas Wouters Date: Wed, 19 Jul 2000 14:51:54 +0000 (+0000) Subject: Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P) X-Git-Tag: v2.0b1~788 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baf2663e44c2a143dac0d9477ea0d77286a6f1d0;p=thirdparty%2FPython%2Fcpython.git Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P) --- diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py index cd939c69b473..1202845d9a22 100644 --- a/Lib/test/test_openpty.py +++ b/Lib/test/test_openpty.py @@ -12,11 +12,10 @@ try: 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) diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py index 389d2a74e3e5..5551cd119e95 100644 --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -27,11 +27,10 @@ except OSError: # " 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