summaryrefslogtreecommitdiff
path: root/test/-ext-/old_thread_select
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-06 00:28:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-06 00:28:13 +0000
commit21212fba19032df8e7f00bb7f5d1ec171d4b7001 (patch)
treece1b6c9eb72b718fa043db48eb16228e384de7c8 /test/-ext-/old_thread_select
parent803c3929b8e2d77ba4c7f5678eef563d5aa77c09 (diff)
test_old_thread_select.rb: ignore short wait on Windows
* test/-ext-/old_thread_select/test_old_thread_select.rb (test_old_select_signal_safe): ignore short wait on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-/old_thread_select')
-rw-r--r--test/-ext-/old_thread_select/test_old_thread_select.rb3
1 files changed, 2 insertions, 1 deletions
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 340351a08e..292b7176e2 100644
--- a/test/-ext-/old_thread_select/test_old_thread_select.rb
+++ b/test/-ext-/old_thread_select/test_old_thread_select.rb
@@ -5,6 +5,7 @@ class TestOldThreadSelect < Test::Unit::TestCase
ANCIENT_LINUX = RUBY_PLATFORM =~ /linux/ && `uname -r`.chomp < '2.6.32'
DARWIN_10 = RUBY_PLATFORM =~ /darwin10/
+ WINDOWS = RUBY_PLATFORM =~ /mswin|mingw/
def with_pipe
r, w = IO.pipe
@@ -88,7 +89,7 @@ class TestOldThreadSelect < Test::Unit::TestCase
end
end
- unless ANCIENT_LINUX || DARWIN_10
+ unless ANCIENT_LINUX || DARWIN_10 || WINDOWS
assert_operator diff, :>=, 1, "interrupted or short wait: diff=#{diff}"
end
assert_equal 0, rc