2008-07-30 04:48:31 -04:00
|
|
|
require 'test/unit'
|
|
|
|
|
|
|
|
class TestSleep < Test::Unit::TestCase
|
|
|
|
def test_sleep_5sec
|
2009-01-02 09:49:58 -05:00
|
|
|
GC.disable
|
2008-07-30 04:48:31 -04:00
|
|
|
start = Time.now
|
|
|
|
sleep 5
|
|
|
|
slept = Time.now-start
|
2013-10-05 20:22:58 -04:00
|
|
|
bottom =
|
|
|
|
case RUBY_PLATFORM
|
|
|
|
when /linux/
|
|
|
|
4.98 if /Linux ([\d.]+)/ =~ `uname -sr` && ($1.split('.')<=>%w/2 6 18/)<1
|
|
|
|
when /mswin|mingw/
|
|
|
|
4.98
|
|
|
|
end
|
|
|
|
bottom ||= 5.0
|
|
|
|
assert_operator(slept, :>=, bottom)
|
2011-11-15 07:58:37 -05:00
|
|
|
assert_operator(slept, :<=, 6.0, "[ruby-core:18015]: longer than expected")
|
2009-01-02 09:49:58 -05:00
|
|
|
ensure
|
|
|
|
GC.enable
|
2008-07-30 04:48:31 -04:00
|
|
|
end
|
|
|
|
end
|