diff options
Diffstat (limited to 'run/tracer.py')
-rw-r--r-- | run/tracer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run/tracer.py b/run/tracer.py index 6e1d05c..5e92a74 100644 --- a/run/tracer.py +++ b/run/tracer.py | |||
@@ -38,8 +38,8 @@ class LinuxTracer(Tracer): | |||
38 | stdout = open('%s/trace-cmd-stdout.txt' % self.output_dir, 'w') | 38 | stdout = open('%s/trace-cmd-stdout.txt' % self.output_dir, 'w') |
39 | stderr = open('%s/trace-cmd-stderr.txt' % self.output_dir, 'w') | 39 | stderr = open('%s/trace-cmd-stderr.txt' % self.output_dir, 'w') |
40 | 40 | ||
41 | execute = Executable(conf.BINS['trace-cmd'], extra_args, stdout, stderr) | 41 | execute = Executable(conf.BINS['trace-cmd'], extra_args, |
42 | execute.cwd = output_dir | 42 | stdout, stderr, output_dir) |
43 | self.bins.append(execute) | 43 | self.bins.append(execute) |
44 | 44 | ||
45 | @staticmethod | 45 | @staticmethod |