~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/strace.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-27 17:42:25 UTC
  • mto: This revision was merged to the branch mainline in revision 6311.
  • Revision ID: jelmer@samba.org-20111127174225-tspfeewl0gwxxumt
Add possible_transports in a couple more places.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Support for running strace against the current process."""
19
19
 
20
 
from __future__ import absolute_import
21
 
 
 
20
import errno
22
21
import os
23
22
import signal
24
23
import subprocess
27
26
from bzrlib import errors
28
27
 
29
28
 
 
29
# this is currently test-focused, so importing bzrlib.tests is ok. We might
 
30
# want to move feature to its own module though.
 
31
from bzrlib.tests.features import Feature
 
32
 
 
33
 
30
34
def strace(function, *args, **kwargs):
31
35
    """Invoke strace on function.
32
36
 
50
54
    # start strace
51
55
    strace_cmd = ['strace', '-r', '-tt', '-p', str(pid), '-o', log_file.name]
52
56
    if follow_children:
53
 
        strace_cmd.append('-f')
 
57
        strace_args.append('-f')
54
58
    # need to catch both stdout and stderr to work around
55
59
    # bug 627208
56
60
    proc = subprocess.Popen(strace_cmd,