summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-20 04:04:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-20 04:04:59 +0000
commit4f969f6eeecf2b20424eae9bb2e2755c430e9a04 (patch)
treeff4700fa6d4ad8cdfb21f97f29dbcce013dd9c11 /test
parent094cfc445bf459f6e1f0523af898a6deefc8bc5f (diff)
dir.c: paths as UTF-8
* dir.c (push_pattern, push_glob): deal with read paths as UTF-8 to stat later, on Windows as well as OS X. [ruby-core:73868] [Bug #12081] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_dir_m17n.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/ruby/test_dir_m17n.rb b/test/ruby/test_dir_m17n.rb
index febfbc0511..c6be8b6109 100644
--- a/test/ruby/test_dir_m17n.rb
+++ b/test/ruby/test_dir_m17n.rb
@@ -365,10 +365,17 @@ class TestDir_M17N < Test::Unit::TestCase
def test_glob_encoding
with_tmpdir do
- %W"file_one.ext file_two.ext".each {|f| open(f, "w") {}}
+ list = %W"file_one.ext file_two.ext \u{6587 4ef6}1.txt \u{6587 4ef6}2.txt"
+ list.each {|f| open(f, "w") {}}
a = "file_one*".force_encoding Encoding::IBM437
b = "file_two*".force_encoding Encoding::EUC_JP
assert_equal([a, b].map(&:encoding), Dir[a, b].map(&:encoding))
+ dir = "\u{76EE 5F551}"
+ Dir.mkdir(dir)
+ list << dir
+ bug12081 = '[ruby-core:73868] [Bug #12081]'
+ a = "*".force_encoding("us-ascii")
+ assert_equal(list, Dir[a].map {|n| n.encode(Encoding::UTF_8)}.sort, bug12081)
end
end