This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Problems with recent test_subprocess changes
Type: behavior Stage:
Components: Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: rosslagerwall, vinay.sajip
Priority: normal Keywords:

Created on 2012-02-21 22:56 by vinay.sajip, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg153912 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2012-02-21 22:56
There appears to be a problem with a recent change made to test_subprocess to try and speed it up a bit. The commit with a problem seems to be 834650d63130 by Ross Lagerwall on 12 Feb 2012, and the problem is in test_poll(), which now looks like this:

    def test_poll(self):
        p = subprocess.Popen([sys.executable, "-c",
                              "import os",
                              "os.read(1)"], stdin=subprocess.PIPE)
        self.addCleanup(p.stdin.close)
        self.assertIsNone(p.poll())
        os.write(p.stdin.fileno(), b'A')
        p.wait()
        # Subsequent invocations should just return the returncode
        self.assertEqual(p.poll(), 0)

A number of problems here: -c only takes one parameter, so for example

./python -c "import os" "os.read(1)"

never does anything with the "os.read(1)". Possibly

"import os; os.read(1)"

was meant, but that doesn't work either: os.read takes two parameters, fd and n, so it seems that what is wanted is

"import os; os.read(0, 1)"

which appears to fulfill the intent to read a byte from stdin.

Because the command being run is effectively

python -c "import os"

the spawned command returns immediately. This (it would appear) leads to a race between the test process and the spawned process, such that sometimes the poll() returns None and sometimes it returns 0, due to the vagaries of the exact circumstances when the test is run. So the test passes on some machines but not on others.

It looks like it would be good to change the Popen call to use "import os; os.read(0, 1)" as the "-c" parameter value.
msg153926 - (view) Author: Ross Lagerwall (rosslagerwall) (Python committer) Date: 2012-02-22 04:03
This was hopefully fixed in e5a94b56d6bc.

Was it one of the buildbots that was failing?
msg153949 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2012-02-22 10:46
> Was it one of the buildbots that was failing?

No, I was doing some testing with the pythonv branch and ran into this on a Mac running OS X 10.5.8 (Leopard).

I'll re-test and close the issue if all is well.
msg153971 - (view) Author: Ross Lagerwall (rosslagerwall) (Python committer) Date: 2012-02-22 16:40
Cool, thanks for reporting and debugging the issue :-)
History
Date User Action Args
2022-04-11 14:57:27adminsetgithub: 58287
2012-02-22 16:40:29rosslagerwallsetmessages: + msg153971
2012-02-22 16:20:38vinay.sajipsetstatus: open -> closed
resolution: fixed
2012-02-22 10:46:44vinay.sajipsetmessages: + msg153949
2012-02-22 04:03:52rosslagerwallsetmessages: + msg153926
2012-02-21 22:56:51vinay.sajipcreate