aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-21 22:00:50 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-21 22:00:50 +0000
commit4e29a1a8fd69e8f13dbfacdbb897fc378ac0ad4b (patch)
treef6eb9065abc396483c0ed691390f308fc4ebefbb /test
parentdaeaa65f088aa541fa6a9345208b6988fe22bf4d (diff)
downloadruby-4e29a1a8fd69e8f13dbfacdbb897fc378ac0ad4b.tar.gz
* test/ruby/test_io.rb (test_fcntl_dupfd): there is no known platform
which don't have F_DUPFD. [ruby-dev:44874] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 7623053c79..f1fc3233b6 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1927,7 +1927,7 @@ End
IO.for_fd(fd).close
end
end
- end if defined?(Fcntl::F_DUPFD)
+ end
def test_cross_thread_close_fd
skip "cross thread close causes hung-up if pipe." if /mswin|bccwin|mingw/ =~ RUBY_PLATFORM