39
39
# thread is running. The following allows the test suite to disable fork
40
40
# following to work around the bug. It's a bit dirty to pollute the kwargs
41
41
# so we take a likely-to-be-unique name to avoid conflicts (*args and
44
46
# capture strace output to a file
45
47
log_file = tempfile.NamedTemporaryFile()
46
48
log_file_fd = log_file.fileno()
49
51
strace_cmd = ['strace', '-r', '-tt', '-p', str(pid), '-o', log_file.name]
52
54
proc = subprocess.Popen(strace_cmd,