mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/-ext-/old_thread_select/test_old_thread_select.rb:
avoid platform bug. [Bug #5858] [ruby-dev:45108] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e3b0732050
commit
0713603b6f
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jan 8 01:18:19 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
|
||||
|
||||
* test/-ext-/old_thread_select/test_old_thread_select.rb:
|
||||
avoid platform bug. [Bug #5858] [ruby-dev:45108]
|
||||
|
||||
Sun Jan 8 00:46:34 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* gc.c: get rid of implicit narrowing conversion.
|
||||
|
|
|
@ -4,6 +4,7 @@ class TestOldThreadSelect < Test::Unit::TestCase
|
|||
require '-test-/old_thread_select/old_thread_select'
|
||||
|
||||
ANCIENT_LINUX = RUBY_PLATFORM =~ /linux/ && `uname -r`.chomp < '2.6.32'
|
||||
DARWIN_10 = RUBY_PLATFORM =~ /darwin10/
|
||||
|
||||
def with_pipe
|
||||
r, w = IO.pipe
|
||||
|
@ -87,7 +88,7 @@ class TestOldThreadSelect < Test::Unit::TestCase
|
|||
end
|
||||
end
|
||||
|
||||
unless ANCIENT_LINUX
|
||||
unless ANCIENT_LINUX || DARWIN_10
|
||||
assert_operator diff, :>=, 1, "interrupted or short wait: diff=#{diff}"
|
||||
end
|
||||
assert_equal 0, rc
|
||||
|
|
Loading…
Reference in a new issue