diff --git a/devlib/trace/ftrace.py b/devlib/trace/ftrace.py index d4e37e1..1c3e769 100644 --- a/devlib/trace/ftrace.py +++ b/devlib/trace/ftrace.py @@ -214,7 +214,7 @@ class FtraceCollector(TraceCollector): # The size of trace.dat will depend on how long trace-cmd was running. # Therefore timout for the pull command must also be adjusted # accordingly. - pull_timeout = 5 * (self.stop_time - self.start_time) + pull_timeout = 10 * (self.stop_time - self.start_time) self.target.pull(self.target_output_file, outfile, timeout=pull_timeout) if not os.path.isfile(outfile): self.logger.warning('Binary trace not pulled from device.')