test_require.rb: fallback encoding

* test/ruby/test_require.rb (assert_require_nonascii_path):
  fallback when LANG=C.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-06-02 04:32:47 +00:00
Родитель 51e738561a
Коммит 311e650334
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -124,7 +124,8 @@ class TestRequire < Test::Unit::TestCase
if SECURITY_WARNING
File.chmod(0777, File.dirname(require_path))
require_path.untaint
ospath = require_path.encode('filesystem')
ospath = (require_path.encode('filesystem') rescue
require_path.encode(self.class.ospath_encoding(require_path)))
assert_warn(/Insecure world writable dir/) do
assert_raise_with_message(SecurityError, "loading from unsafe path #{ospath}") do
SECURITY_WARNING.call(require_path)