From 13a77870de58b6b8fe96f5e188c7f7201ed640a3 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 30 Aug 2011 15:34:54 +0000 Subject: * test/-ext-/old_thread_select/test_old_thread_select.rb (TestOldThreadSelect#test_old_select_read_timeout): if the machine is fast enough, the time used by code around IO.select may be smaller than Time implement threshold. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/old_thread_select/test_old_thread_select.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/-ext-/old_thread_select') diff --git a/test/-ext-/old_thread_select/test_old_thread_select.rb b/test/-ext-/old_thread_select/test_old_thread_select.rb index d965724c83..a7db7bdf99 100644 --- a/test/-ext-/old_thread_select/test_old_thread_select.rb +++ b/test/-ext-/old_thread_select/test_old_thread_select.rb @@ -19,7 +19,7 @@ class TestOldThreadSelect < Test::Unit::TestCase rc = IO.old_thread_select([r.fileno], nil, nil, 0.001) diff = Time.now - t0 assert_equal 0, rc - assert diff > 0.001, "returned too early" + assert diff >= 0.001, "returned too early" end end -- cgit v1.2.3