* 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
This commit is contained in:
akr 2011-11-21 22:00:50 +00:00
parent daeaa65f08
commit 4e29a1a8fd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Nov 22 06:59:21 2011 Tanaka Akira <akr@fsij.org>
* test/ruby/test_io.rb (test_fcntl_dupfd): there is no known platform
which don't have F_DUPFD. [ruby-dev:44874]
Tue Nov 22 04:46:22 2011 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych.rb: remove autoload from psych

View File

@ -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