From 081df640833fb4871048bcecffe61f110facd352 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 13 Apr 2018 06:26:30 +0000 Subject: file.c: chardev is loadable * file.c (ruby_is_fd_loadable): allow character devices to load, e.g., `ruby /dev/null` exits successfully. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_rubyoptions.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/ruby/test_rubyoptions.rb') diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index ddfd5f1883..e6659d4c30 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -1020,4 +1020,9 @@ class TestRubyOptions < Test::Unit::TestCase end end end + + def test_null_script + skip "#{IO::NULL} is not a character device" unless File.chardev?(IO::NULL) + assert_in_out_err([IO::NULL], success: true) + end end -- cgit v1.2.3