History log of /external/python/cpython2/Lib/test/test_popen.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e0ed2d75c8bce7f0fc76c55c957052aa8a0756f2 16-Jan-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #19936: Added executable bits or shebang lines to Python scripts which
requires them. Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.
/external/python/cpython2/Lib/test/test_popen.py
7aedb3b30e2a191df57c5b4deea6345605e77d59 31-Jan-2010 Benjamin Peterson <benjamin@python.org> fix windows buildbot
/external/python/cpython2/Lib/test/test_popen.py
667dc19130445c084109333473194cbd76f4831a 15-Jan-2010 Benjamin Peterson <benjamin@python.org> try to fix for windows
/external/python/cpython2/Lib/test/test_popen.py
7a1b4352973ae572b0e296c2647937cbaa10e4ab 14-Jan-2010 Benjamin Peterson <benjamin@python.org> use more robust quoting
/external/python/cpython2/Lib/test/test_popen.py
e822ab01664261c7b0e88c705c4b063bdd82b005 10-Jan-2010 Benjamin Peterson <benjamin@python.org> fix test_popen when the path to python has spaces #7671
/external/python/cpython2/Lib/test/test_popen.py
9175742ef001079ef20bb8d77f4bc319e3cf13b7 11-Jul-2009 Amaury Forgeot d'Arc <amauryfa@gmail.com> Add basic tests for the return value of os.popen().close().
According to #6358, python 3.0 has a different implementation that behaves differently.
/external/python/cpython2/Lib/test/test_popen.py
4b884a5cc22de75c5b9e2bf11ace0da83baa58fc 24-Jan-2007 Walter Dörwald <walter@livinglogic.de> Port test_popen.py to unittest.
/external/python/cpython2/Lib/test/test_popen.py
b15ac3169d5958e294e09f8daeab0f413e76d0a3 29-Jun-2006 Neal Norwitz <nnorwitz@gmail.com> Add new utility function, reap_children(), to test_support. This should
be called at the end of each test that spawns children (perhaps it
should be called from regrtest instead?). This will hopefully prevent
some of the unexplained failures in the buildbots (hppa and alpha)
during tests that spawn children. The problems were not reproducible.
There were many zombies that remained at the end of several tests.
In the worst case, this shouldn't cause any more problems,
though it may not help either. Time will tell.
/external/python/cpython2/Lib/test/test_popen.py
61cd0db3d2d3f78c85ba7c1ee52b5df63837a8ba 07-Mar-2003 Tim Peters <tim.peters@gmail.com> Don't quote the path to Python unless the path contains an embedded space.
Quoting the path doesn't work on Win2K (cmd.exe) regardless, this is just
a hack to let the test pass again on Win2K (so long as Python isn't
installed in a path that does contain an embedded space). On Win2K it
looks like we'd also have to add a second pair of double quotes, around
the entire command line.
/external/python/cpython2/Lib/test/test_popen.py
0c44c0477bf1e6e00c15f6d316e293e56d057e40 24-Feb-2003 Jack Jansen <jack.jansen@cwi.nl> sys.executable can contain spaces, cater for this when passing it to
os.popen(). Fixes #692222.
/external/python/cpython2/Lib/test/test_popen.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_popen.py
d69030db4ff101c6182ef13d8a057f5b8d5193d6 20-Jul-2002 Neal Norwitz <nnorwitz@gmail.com> Get popen test to work even if python is not in the path
/external/python/cpython2/Lib/test/test_popen.py
e7fefbf68dc3384b835d38bd8897657d7289f826 03-Apr-2002 Mark Hammond <mhammond@skippinet.com.au> Fix bugs:
457466: popenx() argument mangling hangs python
226766: popen('python -c"...."') tends to hang

Fixes argument quoting in w9xpopen.exe for Windows 9x. w9xpopen.exe
also never attempts to display a MessageBox when not executed
interactively.

Added test_popen() test. This test currently just executes
"python -c ..." as a child process, and checks that the expected
arguments were all recieved correctly by the child process. This
test succeeds for me on Win9x, win2k and Linux, and I hope it does
for other popen supported platforms too :)
/external/python/cpython2/Lib/test/test_popen.py