Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 26 additions & 33 deletions 59 Lib/test/test_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
except ImportError:
threading = None

try:
import _testcapi
except ImportError:
_testcapi = None

mswindows = (sys.platform == "win32")

#
Expand Down Expand Up @@ -1265,40 +1270,28 @@ def test_pipe_cloexec(self):

self.assertEqual(p2.returncode, 0, "Unexpected error: " + repr(stderr))

@unittest.skipIf(not ctypes, 'ctypes module required')
@unittest.skipIf(not sys.executable, 'Test requires sys.executable')
def test_child_terminated_in_stopped_state(self):
@unittest.skipUnless(_testcapi is not None
and hasattr(_testcapi, 'W_STOPCODE'),
'need _testcapi.W_STOPCODE')
def test_stopped(self):
"""Test wait() behavior when waitpid returns WIFSTOPPED; issue29335."""
PTRACE_TRACEME = 0 # From glibc and MacOS (PT_TRACE_ME).
libc_name = ctypes.util.find_library('c')
libc = ctypes.CDLL(libc_name)
if not hasattr(libc, 'ptrace'):
raise unittest.SkipTest('ptrace() required')

code = textwrap.dedent("""
import ctypes
from test.support import _crash_python

libc = ctypes.CDLL({libc_name!r})
libc.ptrace({PTRACE_TRACEME}, 0, 0)
""".format(libc_name=libc_name, PTRACE_TRACEME=PTRACE_TRACEME))

child = subprocess.Popen([sys.executable, '-c', code])
if child.wait() != 0:
raise unittest.SkipTest('ptrace() failed - unable to test')

code += textwrap.dedent("""
# Crash the process
_crash_python()
""")
child = subprocess.Popen([sys.executable, '-c', code])
try:
returncode = child.wait()
except:
child.kill() # Clean up the hung stopped process.
raise
self.assertNotEqual(0, returncode)
self.assertLess(returncode, 0) # signal death, likely SIGSEGV.
args = [sys.executable, '-c', 'pass']
proc = subprocess.Popen(args)

# Wait until the real process completes to avoid zombie process
pid = proc.pid
pid, status = os.waitpid(pid, 0)
self.assertEqual(status, 0)

status = _testcapi.W_STOPCODE(3)

def mock_waitpid(pid, flags):
return (pid, status)

with test_support.swap_attr(os, 'waitpid', mock_waitpid):
returncode = proc.wait()

self.assertEqual(returncode, -3)


@unittest.skipUnless(mswindows, "Windows specific tests")
Expand Down
22 changes: 22 additions & 0 deletions 22 Modules/_testcapimodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
# include <crtdbg.h>
#endif

#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h> /* For W_STOPCODE */
#endif

#ifdef WITH_THREAD
#include "pythread.h"
#endif /* WITH_THREAD */
Expand Down Expand Up @@ -2523,6 +2527,7 @@ msvcrt_CrtSetReportMode(PyObject* self, PyObject *args)
return PyInt_FromLong(res);
}


static PyObject*
msvcrt_CrtSetReportFile(PyObject* self, PyObject *args)
{
Expand All @@ -2540,6 +2545,20 @@ msvcrt_CrtSetReportFile(PyObject* self, PyObject *args)
#endif


#ifdef W_STOPCODE
static PyObject*
py_w_stopcode(PyObject *self, PyObject *args)
{
int sig, status;
if (!PyArg_ParseTuple(args, "i", &sig)) {
return NULL;
}
status = W_STOPCODE(sig);
return PyLong_FromLong(status);
}
#endif


static PyMethodDef TestMethods[] = {
{"raise_exception", raise_exception, METH_VARARGS},
{"set_errno", set_errno, METH_VARARGS},
Expand Down Expand Up @@ -2655,6 +2674,9 @@ static PyMethodDef TestMethods[] = {
#ifdef MS_WINDOWS
{"CrtSetReportMode", (PyCFunction)msvcrt_CrtSetReportMode, METH_VARARGS},
{"CrtSetReportFile", (PyCFunction)msvcrt_CrtSetReportFile, METH_VARARGS},
#endif
#ifdef W_STOPCODE
{"W_STOPCODE", py_w_stopcode, METH_VARARGS},
#endif
{NULL, NULL} /* sentinel */
};
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.