History log of /external/python/cpython2/Lib/test/test_ioctl.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/test_ioctl.py
f4f6171bc0de3eefb94d49aa5f8d8e85700d7478 07-Sep-2010 Antoine Pitrou <solipsis@pitrou.net> Merged revisions 84589 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r84589 | antoine.pitrou | 2010-09-07 18:30:09 +0200 (mar., 07 sept. 2010) | 5 lines

Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
and the passed buffer was exactly 1024 bytes long, the buffer wouldn't
be updated back after the system call. Original patch by Brian Brazil.
........
/external/python/cpython2/Lib/test/test_ioctl.py
172e15fdd6605b87119cd79da67498809674e2c7 09-Aug-2010 Florent Xicluna <florent.xicluna@gmail.com> Merged revisions 83833,83838-83839,83859,83878 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r83833 | florent.xicluna | 2010-08-08 18:25:27 +0200 (dim., 08 août 2010) | 2 lines

Add test case for the HTTPResponse being an iterable. Follow-up of issue #4608.
........
r83838 | florent.xicluna | 2010-08-08 20:03:44 +0200 (dim., 08 août 2010) | 2 lines

Typo.
........
r83839 | florent.xicluna | 2010-08-08 20:06:13 +0200 (dim., 08 août 2010) | 2 lines

Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.
........
r83859 | florent.xicluna | 2010-08-09 00:07:16 +0200 (lun., 09 août 2010) | 2 lines

Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array.
........
r83878 | florent.xicluna | 2010-08-09 10:29:08 +0200 (lun., 09 août 2010) | 1 line

Merge the 2to3 script from /sandbox/trunk/2to3/2to3, revision 72867 (latest).
........
/external/python/cpython2/Lib/test/test_ioctl.py
aa98058cc44ba20f35c106d20918c6196b737561 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]In where appropriate
/external/python/cpython2/Lib/test/test_ioctl.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_ioctl.py
3db8a3432bd84b58bdc7da2c9872777c537a4d09 31-Mar-2009 R. David Murray <rdmurray@bitdance.com> Change more tests to use import_module for the modules that
should cause tests to be skipped. Also rename import_function
to the more descriptive get_attribute and add a docstring.
/external/python/cpython2/Lib/test/test_ioctl.py
bec087f29d7dca0aaf8f51be7d7c135e9b84e7f1 26-Mar-2009 Benjamin Peterson <benjamin@python.org> fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
/external/python/cpython2/Lib/test/test_ioctl.py
888a39b54c4f47ee25d53b157e2c50402627cd0b 26-Mar-2009 Benjamin Peterson <benjamin@python.org> remove test_support.TestSkipped and just use unittest.SkipTest
/external/python/cpython2/Lib/test/test_ioctl.py
7d3d04d6dbe90aaec04e23ba417f2e0d4f954bab 24-May-2008 Martin v. Löwis <martin@v.loewis.de> Don't try to get the window size if it was never set before.
Fixes the test failure on Solaris.
/external/python/cpython2/Lib/test/test_ioctl.py
6af3db8632783cf1f46ae1798b29db169007431b 20-Mar-2008 Gregory P. Smith <greg@mad-scientist.com> Attempt to fix the Solaris Sparc 10 buildbot. It was failing with an invalid
argument error on ioctl. This was caused by the added test_fcntl ioctl test
that hard coded 0 as the fd to use. Without a terminal, this fails on solaris.
(it passed from the command line on sol 10, both 32 and 64 bit)

Also, test_ioctl exists so I moved the test into there where it belongs.
/external/python/cpython2/Lib/test/test_ioctl.py
8ee3e5aa9306a00573817e237bed4a482473e818 14-Sep-2005 Guido van Rossum <guido@python.org> - Changes donated by Elemental Security to make it work on AIX 5.3
with IBM's 64-bit compiler (SF patch #1284289). This also closes SF
bug #105470: test_pwd fails on 64bit system (Opteron).
/external/python/cpython2/Lib/test/test_ioctl.py
26f42f68211d320307a771c075bcabe18f7c62b9 20-Mar-2003 Neal Norwitz <nnorwitz@gmail.com> Skip the ioctl test if we can't open /dev/tty. This happens on
Solaris (and probably other Unixes) when run without a terminal
(eg, from cron or at).
/external/python/cpython2/Lib/test/test_ioctl.py
f00899866888408106fea4147a9d2cdc2f1e8dbc 03-Mar-2003 Michael W. Hudson <mwh@python.net> Fix bug

[ 555817 ] Flawed fcntl.ioctl implementation.

with my patch that allows for an array to be mutated when passed
as the buffer argument to ioctl() (details complicated by
backwards compatibility considerations -- read the docs!).
/external/python/cpython2/Lib/test/test_ioctl.py