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
|
2012-04-24 08:17:02 -04:00
|
|
|
bottom = /linux/ =~ RUBY_PLATFORM && /Linux ([\d.]+)/ =~ `uname -sr` && ($1.split('.')<=>%w/2 6 18/)<1 ? 4.98 : 5.0
|
2012-03-04 20:16:19 -05:00
|
|
|
assert_operator(bottom, :<=, slept)
|
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
|