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