We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55cd7d5 commit 57f8779Copy full SHA for 57f8779
1 file changed
tools/bisect/bisect_hang.py
@@ -11,7 +11,7 @@ def run(cppcheck_path, options, elapsed_time=None):
11
timeout = elapsed_time * 2
12
cmd = options.split()
13
cmd.insert(0, cppcheck_path)
14
- print('running {}'.format(cppcheck_path))
+ print('running (timeout: {}) {}'.format(timeout, cppcheck_path))
15
with subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) as p:
16
try:
17
stdout, _ = p.communicate(timeout=timeout)
0 commit comments