mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 00:54:01 +02:00
Skip assert_linear_performance for RJIT
This commit is contained in:
parent
8562b665f3
commit
afbae64f05
1 changed files with 5 additions and 2 deletions
|
@ -732,13 +732,16 @@ eom
|
||||||
#
|
#
|
||||||
# :yield: each elements of +seq+.
|
# :yield: each elements of +seq+.
|
||||||
def assert_linear_performance(seq, rehearsal: nil, pre: ->(n) {n})
|
def assert_linear_performance(seq, rehearsal: nil, pre: ->(n) {n})
|
||||||
|
# Timeout testing generally doesn't work when RJIT compilation happens.
|
||||||
|
rjit_enabled = defined?(RubyVM::RJIT) && RubyVM::RJIT.enabled?
|
||||||
|
|
||||||
first = seq.first
|
first = seq.first
|
||||||
*arg = pre.call(first)
|
*arg = pre.call(first)
|
||||||
times = (0..(rehearsal || (2 * first))).map do
|
times = (0..(rehearsal || (2 * first))).map do
|
||||||
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
||||||
yield(*arg)
|
yield(*arg)
|
||||||
t = (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st)
|
t = (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st)
|
||||||
assert_operator 0, :<=, t
|
assert_operator 0, :<=, t unless rjit_enabled
|
||||||
t.nonzero?
|
t.nonzero?
|
||||||
end
|
end
|
||||||
times.compact!
|
times.compact!
|
||||||
|
@ -754,7 +757,7 @@ eom
|
||||||
Timeout.timeout(t, Timeout::Error, message) do
|
Timeout.timeout(t, Timeout::Error, message) do
|
||||||
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
||||||
yield(*arg)
|
yield(*arg)
|
||||||
assert_operator (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st), :<=, t, message
|
assert_operator (Process.clock_gettime(Process::CLOCK_MONOTONIC) - st), :<=, t, message unless rjit_enabled
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue