From a062d71b15e0a5408cf52516706e8095ed3de69b Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 12 Apr 2015 01:26:28 +0000 Subject: test_file_exhaustive.rb: NTFS * test/ruby/test_file_exhaustive.rb (NTFS): flag for test of NTFS. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_file_exhaustive.rb | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'test/ruby/test_file_exhaustive.rb') diff --git a/test/ruby/test_file_exhaustive.rb b/test/ruby/test_file_exhaustive.rb index d9c3bebd19..2664f95ba9 100644 --- a/test/ruby/test_file_exhaustive.rb +++ b/test/ruby/test_file_exhaustive.rb @@ -6,6 +6,7 @@ require "socket" class TestFileExhaustive < Test::Unit::TestCase DRIVE = Dir.pwd[%r'\A(?:[a-z]:|//[^/]+/[^/]+)'i] POSIX = /cygwin|mswin|bccwin|mingw|emx/ !~ RUBY_PLATFORM + NTFS = !(/cygwin|mingw|mswin|bccwin/ !~ RUBY_PLATFORM) def assert_incompatible_encoding d = "\u{3042}\u{3044}".encode("utf-16le") @@ -256,7 +257,7 @@ class TestFileExhaustive < Test::Unit::TestCase assert_nothing_raised { File.stat(File.basename(prefix)) } end end - end if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM + end if NTFS def test_directory_p assert_file.directory?(@dir) @@ -586,8 +587,7 @@ class TestFileExhaustive < Test::Unit::TestCase def test_expand_path assert_equal(regular_file, File.expand_path(File.basename(regular_file), File.dirname(regular_file))) - case RUBY_PLATFORM - when /cygwin|mingw|mswin|bccwin/ + if NTFS assert_equal(regular_file, File.expand_path(regular_file + " ")) assert_equal(regular_file, File.expand_path(regular_file + ".")) assert_equal(regular_file, File.expand_path(regular_file + "::$DATA")) @@ -595,6 +595,8 @@ class TestFileExhaustive < Test::Unit::TestCase assert_match(/\Ac:\//i, File.expand_path('c:foo', 'd:/bar')) assert_match(/\Ae:\//i, File.expand_path('e:foo', 'd:/bar')) assert_match(%r'\Ac:/bar/foo\z'i, File.expand_path('c:foo', 'c:/bar')) + end + case RUBY_PLATFORM when /darwin/ ["\u{feff}", *"\u{2000}"..."\u{2100}"].each do |c| file = regular_file + c @@ -957,7 +959,7 @@ class TestFileExhaustive < Test::Unit::TestCase assert_equal("foo", File.basename("foo", ".ext")) assert_equal("foo", File.basename("foo.ext", ".ext")) assert_equal("foo", File.basename("foo.ext", ".*")) - if /cygwin|mingw|mswin|bccwin/ =~ RUBY_PLATFORM + if NTFS basename = File.basename(regular_file) assert_equal(basename, File.basename(regular_file + " ")) assert_equal(basename, File.basename(regular_file + ".")) @@ -1006,7 +1008,7 @@ class TestFileExhaustive < Test::Unit::TestCase infixes = ["", " ", "."] infixes2 = infixes + [".ext "] appendixes = [""] - if /cygwin|mingw|mswin|bccwin/ =~ RUBY_PLATFORM + if NTFS appendixes << " " << "." << "::$DATA" << "::$DATA.bar" end prefixes.each do |prefix| -- cgit v1.2.3