We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7764ca3 commit 16100dfCopy full SHA for 16100df
update_bench_traces.rb
@@ -97,7 +97,7 @@ def print_res (i)
97
vulner = lines.grep(/vulnerable:[ ]*([0-9]*)/) { |x| $1.to_i } .first
98
unsafe = lines.grep(/unsafe:[ ]*([0-9]*)/) { |x| $1.to_i } .first
99
uncalled = lines.grep(/will never be called/).reject {|x| x =~ /__check/}.size
100
- res = lines.grep(/TIMEOUT\s*(.*) s.*$/) { |x| $1 }
+ res = lines.grep(/TIMEOUT\s*(\d*) s.*$/) { |x| $1 }
101
if res == [] then
102
dur = lines.grep(/^Duration: (.*) s/) { |x| $1 }
103
cod = lines.grep(/EXITCODE\s*(.*)$/) { |x| $1 }
0 commit comments