diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-12-12 20:50:01 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-12-12 20:53:02 +0900 |
commit | b6f25318c5a1efca0ab963b49ae69db82787e783 (patch) | |
tree | 952fdc2112c0fe71d8344e437ba3102b8187daa9 /test | |
parent | c20dd2f75491fc6e78dab55b492c507ee3bb670d (diff) | |
download | ruby-b6f25318c5a1efca0ab963b49ae69db82787e783.tar.gz |
Cygwin path cannot be mapped to a UNC as-is
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_file.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb index 9153298fd0..02f7464599 100644 --- a/test/ruby/test_file.rb +++ b/test/ruby/test_file.rb @@ -451,7 +451,7 @@ class TestFile < Test::Unit::TestCase end end - if /(bcc|ms|cyg)win|mingw|emx/ =~ RUBY_PLATFORM + if /mswin|mingw/ =~ RUBY_PLATFORM def test_long_unc feature3399 = '[ruby-core:30623]' path = File.expand_path(__FILE__) |