We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b88eb30 commit 6074ec7Copy full SHA for 6074ec7
1 file changed
tools/bisect/bisect_hang.py
@@ -86,6 +86,8 @@ def run(cppcheck_path, options, elapsed_time=None):
86
print('run_time: {}'.format(run_time))
87
run_time_factor = run_time / elapsed_time
88
print('run_time_factor: {}'.format(run_time_factor))
89
+run_time_diff = run_time - elapsed_time
90
+print('run_time_diff: {}'.format(run_time_diff))
91
92
if run_time_factor >= MAX_RT_FACTOR:
93
sys.exit(EC_BAD if not invert else EC_GOOD) # factor exceeded
0 commit comments