From a0b3e032020b77898cbc4be04559456a3cb6f10b Mon Sep 17 00:00:00 2001 From: mame Date: Sat, 25 May 2013 09:32:47 +0000 Subject: * dir.c (bracket): fix copy-paste error. When the first and last characters of fnmatch range have different length, fnmatch may have wrongly matched a path that does not really match. Coverity Scan found this bug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40925 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_fnmatch.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/ruby/test_fnmatch.rb') diff --git a/test/ruby/test_fnmatch.rb b/test/ruby/test_fnmatch.rb index 42f6a458f3..15e5d79e35 100644 --- a/test/ruby/test_fnmatch.rb +++ b/test/ruby/test_fnmatch.rb @@ -124,4 +124,9 @@ class TestFnmatch < Test::Unit::TestCase assert_file.fnmatch("{*,#{pattern_eucjp}}", path, File::FNM_EXTGLOB) end end + + def test_unicode + assert_file.fnmatch("[a-\u3042]*", "\u3042") + assert_file.not_fnmatch("[a-\u3042]*", "\u3043") + end end -- cgit v1.2.3