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:
parent
51e738561a
commit
311e650334
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user