mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_file_exhaustive.rb: check case-sensitive fs
* test/ruby/test_file_exhaustive.rb (test_expand_path): dump expanded file name, not only appended char, for case-sensitive filesystem. [ruby-dev:50093] [Bug #13489] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0749e7be45
commit
9c5c31c8b7
1 changed files with 4 additions and 2 deletions
|
@ -744,12 +744,14 @@ class TestFileExhaustive < Test::Unit::TestCase
|
||||||
when /darwin/
|
when /darwin/
|
||||||
["\u{feff}", *"\u{2000}"..."\u{2100}"].each do |c|
|
["\u{feff}", *"\u{2000}"..."\u{2100}"].each do |c|
|
||||||
file = regular_file + c
|
file = regular_file + c
|
||||||
|
full_path = File.expand_path(file)
|
||||||
|
mesg = proc {File.basename(full_path).dump}
|
||||||
begin
|
begin
|
||||||
open(file) {}
|
open(file) {}
|
||||||
rescue
|
rescue
|
||||||
assert_equal(file, File.expand_path(file), c.dump)
|
assert_equal(file, full_path, mesg)
|
||||||
else
|
else
|
||||||
assert_equal(regular_file, File.expand_path(file), c.dump)
|
assert_equal(regular_file, full_path, mesg)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue