From 9efce27a62e2ef3c5940d3ee407e5a57e860bc66 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 22 Feb 2012 23:10:08 +0000 Subject: merge revision(s) 33873: * win32/win32.c (rb_w32_uchmod): typo. [Bug#5671] [ruby-dev:44898] * test/ruby/test_file.rb (TestFile#test_chmod_m17n): test of above bug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_file.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb index ba9549fda5..765458c09e 100644 --- a/test/ruby/test_file.rb +++ b/test/ruby/test_file.rb @@ -181,4 +181,12 @@ class TestFile < Test::Unit::TestCase } end + def test_chmod_m17n + bug5671 = '[ruby-dev:44898]' + Dir.mktmpdir('test-file-chmod-m17n-') do |tmpdir| + file = File.join(tmpdir, "\u3042") + File.open(file, 'w'){} + assert_equal(File.chmod(0666, file), 1, bug5671) + end + end end -- cgit v1.2.3