[issue39653] test_posix fails during make test

2020-02-29 Thread STINNER Victor
STINNER Victor added the comment: And for this one? import os args=['no_such_executable'] os.execvpe(args[0], args, os.environ) -- ___ Python tracker ___

[issue39653] test_posix fails during make test

2020-02-29 Thread STINNER Victor
STINNER Victor added the comment: Which exception do you get for the following code? import os args=['no_such_executable'] os.execve(args[0], args, os.environ) -- ___ Python tracker

[issue39653] test_posix fails during make test

2020-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: My understanding that Python is compiled and installed and that the failure was during a later test. In repository master (3.9) the line is 1549 instead of 1529. The test function code is def test_no_such_executable(self): no_such_executable =

[issue39653] test_posix fails during make test

2020-02-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: == ERROR: test_no_such_executable (test.test_posix.TestPosixSpawnP) -- Traceback (most recent call last): File "/home/zacha

[issue39653] test_posix fails during make test

2020-02-16 Thread Zachary
New submission from Zachary : Forgive me, for I am a newb and this is the first Python issue I have ever created. My system: Linux debian-thinkpad 4.9.0-12-amd64 #1 SMP Debian 4.9.210-1 (2020-01-20) x86_64 GNU/Linux While attempting to run "make test" test_posix failed. As you can see in the