From 9b71251e1e8f86972df2c0eda7c4209c5da7488a Mon Sep 17 00:00:00 2001 From: nagachika Date: Mon, 15 Aug 2016 19:02:10 +0000 Subject: merge revision(s) 55181: [Backport #12431] * transcode.c (str_transcode0): scrub in the given encoding when the source encoding is given, not in the encoding of the receiver. [ruby-core:75732] [Bug #12431] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@55905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_transcode.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ruby/test_transcode.rb') diff --git a/test/ruby/test_transcode.rb b/test/ruby/test_transcode.rb index 33e7467102..2f97d098fd 100644 --- a/test/ruby/test_transcode.rb +++ b/test/ruby/test_transcode.rb @@ -1213,6 +1213,9 @@ class TestTranscode < Test::Unit::TestCase def test_invalid_replace_string assert_equal("aA", "a\x80A".encode("us-ascii", "euc-jp", :invalid=>:replace, :replace=>"")) assert_equal("aA", "a\x80A".encode("us-ascii", "euc-jis-2004", :invalid=>:replace, :replace=>"")) + s = "abcd\u{c1}" + r = s.b.encode("UTF-8", "UTF-8", invalid: :replace, replace: "\u{fffd}") + assert_equal(s, r) end def test_undef_replace -- cgit v1.2.3