summaryrefslogtreecommitdiff
path: root/tests/test_ctrl_chars.py
Commit message (Collapse)AuthorAgeFilesLines
* Delegate sending control characters to ptyprocessThomas Kluyver2014-11-231-2/+5
|
* gah; fix constant VINTR -> INTRjquast2014-06-241-1/+1
|
* Use const child._VINTR instead of '3'Jeff Quast2014-06-241-1/+1
|
* Solaris support, tested on SmartOS from cron(1).Jeff Quast2014-06-081-50/+50
|
* Fix imports in tests for Python 3Thomas Kluyver2014-06-011-1/+1
| | | | Closes gh-59
* Fix test for sending all possible bytes to child processThomas Kluyver2013-09-261-16/+15
|
* Hopefully fix problem with test_sendcontrol on TravisThomas Kluyver2013-09-251-8/+12
|
* Fix interact_unicode testThomas Kluyver2013-09-251-0/+3
|
* remove trailing ',', forcing a tuple and breakingjquast2013-09-231-1/+1
|
* increase timeout, remove leading ^ from patternjquast2013-09-231-4/+4
|
* add missing %sjquast2013-09-231-1/+1
|
* quit mucking with join() and use string formattingjquast2013-09-231-1/+2
|
* regexp fix for some platforms, actually match '^'jquast2013-09-231-1/+1
|
* SyntaxError fix, missing comma, woops!jquast2013-09-231-1/+1
|
* KeyboardInterrupt may need catch in some platformsjquast2013-09-231-1/+1
| | | | need to read full p.before, p.after to discover it in this test case.
* increase timeout, massage regexp of ^A/1 ..jquast2013-09-231-2/+5
|
* fixing join, again!jquast2013-09-231-1/+1
|
* join() fixjquast2013-09-221-2/+1
|
* missing import fix for sysjquast2013-09-221-0/+1
|
* exception fixes for py2.5<->3.2 compatjquast2013-09-221-2/+4
|
* py2.5 compatibilities w/six.pyjquast2013-09-221-5/+4
| | | | | | | | | | -except Exception as e: +except Exception, err: the unfortunate use of six.b('') instead of b'' print(arg0, arg1) => six.print_(arg0, arg1) some autopep8 -i is definitely called for, some of these test cases are darn unreadable, but did partially pep8 some of the really-long-over-80col-lines.
* correctly test control charactersjquast2013-09-221-15/+19
| | | | previously any digit passed ('[0-9]+') -- this is no longer the case -- the number expected by ord() is explicitly matched. Also, notice how p.isalive() returns True even if the child process soon exits -- i wonder if isalive() should recieve a "waitfor=-1" timeout parameter, looping if >0 until False? ah well.
* remove unused imports, test return values of sendjquast2013-09-221-10/+8
|
* Use new style except statements in testsThomas Kluyver2013-09-171-2/+2
|
* Moved everything up one directory level.Noah Spurrier2012-10-261-0/+109