summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-29 01:39:14 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-29 01:39:14 +0000
commit6a5dda00d8fef046b1df3ba41411fb041106cd23 (patch)
tree009888bcde4ac2ba8f29ea5218bd5e74c8d8dfc2 /test
parentde816650091ca9602ceae328e3a73373f64cfe73 (diff)
* io.c (rb_io_extract_modeenc): add option parameter `flags'
to append extra oflags to normal mode. [Feature #11253] [ruby-core:69539] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 51b67f37f5..7adeae4700 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3230,4 +3230,25 @@ End
}
end if /mswin|mingw|bccwin/ !~ RUBY_PLATFORM
+ def test_open_flag
+ make_tempfile do |t|
+ assert_raise(Errno::EEXIST){ open(t, File::WRONLY|File::CREAT, flags: File::EXCL){} }
+ assert_raise(Errno::EEXIST){ open(t, 'w', flags: File::EXCL){} }
+ assert_raise(Errno::EEXIST){ open(t, mode: 'w', flags: File::EXCL){} }
+ end
+ end
+
+ def test_open_flag_binar
+ make_tempfile do |t|
+ open(t, File::RDONLY, flags: File::BINARY) do |f|
+ assert_equal true, f.binmode
+ end
+ open(t, 'r', flags: File::BINARY) do |f|
+ assert_equal true, f.binmode
+ end
+ open(t, mode: 'r', flags: File::BINARY) do |f|
+ assert_equal true, f.binmode
+ end
+ end
+ end if File::BINARY != 0
end