summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tool/lib/core_assertions.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/tool/lib/core_assertions.rb b/tool/lib/core_assertions.rb
index c5b4089862..6000d39c90 100644
--- a/tool/lib/core_assertions.rb
+++ b/tool/lib/core_assertions.rb
@@ -758,14 +758,14 @@ eom
end
times.compact!
tmin, tmax = times.minmax
- tmax *= tmax / tmin
- tmax = 10**Math.log10(tmax).ceil
+ tbase = 10 ** Math.log10(tmax * ([(tmax / tmin), 2].max ** 2)).ceil
+ info = "(tmin: #{tmin}, tmax: #{tmax}, tbase: #{tbase})"
seq.each do |i|
next if i == first
- t = tmax * i.fdiv(first)
+ t = tbase * i.fdiv(first)
*arg = pre.call(i)
- message = "[#{i}]: in #{t}s"
+ message = "[#{i}]: in #{t}s #{info}"
Timeout.timeout(t, Timeout::Error, message) do
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
yield(*arg)