aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-28 01:43:38 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-28 01:43:38 +0000
commitbeebe64419170eb9596c5375ba8efd13843542b1 (patch)
tree401dceef2e209039dac24f5656148e47fa9bc134 /test/lib
parent82d5cb42e6d37a8bf4b85643f0ee2afed3cc8561 (diff)
downloadruby-beebe64419170eb9596c5375ba8efd13843542b1.tar.gz
tests: increase CPU percentage threshold for assert_cpu_usage_low
When sleeping for the tick rate of 100ms (defined in thread_pthread.c) as we do in test/ruby/test_io.rb (test_copy_stream_no_busy_wait), it may not be possible to measure with <= 10ms resolution on 100HZ systems (CONFIG_HZ in the Linux kernel). So increase the threshold to 15ms (10ms + 5ms slack for slow systems). * test/lib/test/unit/assertions.rb (assert_cpu_usage_low): increase pct default value [ruby-core:81427] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/test/unit/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/test/unit/assertions.rb b/test/lib/test/unit/assertions.rb
index 92f754064a..fcd9795402 100644
--- a/test/lib/test/unit/assertions.rb
+++ b/test/lib/test/unit/assertions.rb
@@ -715,7 +715,7 @@ eom
skip
end
- def assert_cpu_usage_low(msg = nil, pct: 0.005)
+ def assert_cpu_usage_low(msg = nil, pct: 0.015)
require 'benchmark'
tms = Benchmark.measure(msg || '') { yield }
max = pct * tms.real