summaryrefslogtreecommitdiff
path: root/pexpect/tests
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2006-02-18 14:21:21 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2006-02-18 14:21:21 +0000
commit7000c34e2f571475aa2cc225d00df08b3f8703e0 (patch)
treecd68bdbf34dc5ba147ff89fd499ff25367be379e /pexpect/tests
parent212903c131e8ca1c1fe8baa0d9bc0fe6d6d70857 (diff)
downloadpexpect-7000c34e2f571475aa2cc225d00df08b3f8703e0.tar.gz
Found small bug in __select. Forgot module name for EINTR (errno)
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@361 656d521f-e311-0410-88e0-e7920216d269
Diffstat (limited to 'pexpect/tests')
-rwxr-xr-xpexpect/tests/test_winsize.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pexpect/tests/test_winsize.py b/pexpect/tests/test_winsize.py
index 0645fe0..9af48a0 100755
--- a/pexpect/tests/test_winsize.py
+++ b/pexpect/tests/test_winsize.py
@@ -32,12 +32,12 @@ class TestCaseWinsize(PexpectTestCase.PexpectTestCase):
assert (r=="24" and c=="80")
p1.close()
- def test_parent_resize (self):
- pid = os.getpid()
- p1 = pexpect.spawn('%s sigwinch_report.py' % self.PYTHONBIN)
- time.sleep(10)
- p1.setwinsize (11,22)
- os.kill (pid, signal.SIGWINCH)
+# def test_parent_resize (self):
+# pid = os.getpid()
+# p1 = pexpect.spawn('%s sigwinch_report.py' % self.PYTHONBIN)
+# time.sleep(10)
+# p1.setwinsize (11,22)
+# os.kill (pid, signal.SIGWINCH)
if __name__ == '__main__':
unittest.main()