Skip to content

Commit 57f8779

Browse files
committed
bisect_hang.py: print the timeout we are running with
1 parent 55cd7d5 commit 57f8779

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/bisect/bisect_hang.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def run(cppcheck_path, options, elapsed_time=None):
1111
timeout = elapsed_time * 2
1212
cmd = options.split()
1313
cmd.insert(0, cppcheck_path)
14-
print('running {}'.format(cppcheck_path))
14+
print('running (timeout: {}) {}'.format(timeout, cppcheck_path))
1515
with subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) as p:
1616
try:
1717
stdout, _ = p.communicate(timeout=timeout)

0 commit comments

Comments
 (0)