ruby-changes:44851
From: duerst <ko1@a...>
Date: Tue, 29 Nov 2016 17:40:05 +0900 (JST)
Subject: [ruby-changes:44851] duerst:r56924 (trunk): Fix erroneous test of target against target
duerst 2016-11-29 17:39:57 +0900 (Tue, 29 Nov 2016) New Revision: 56924 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56924 Log: Fix erroneous test of target against target * test/ruby/enc/test_case_comprehensive.rb: fix test condition, add a temporary check for U+A64B, the only character where the tests currently fail. (Bug #12990) Modified files: trunk/test/ruby/enc/test_case_comprehensive.rb Index: test/ruby/enc/test_case_comprehensive.rb =================================================================== --- test/ruby/enc/test_case_comprehensive.rb (revision 56923) +++ test/ruby/enc/test_case_comprehensive.rb (revision 56924) @@ -146,10 +146,12 @@ TestComprehensiveCaseFold.data_files_ava https://github.com/ruby/ruby/blob/trunk/test/ruby/enc/test_case_comprehensive.rb#L146 attributes.prepend '_' unless attributes.empty? define_method "test_#{encoding}_#{test.method_name}#{attributes}" do @@codepoints.each do |code| + next if code=="\uA64B" # temporarily exclude this character from testing, + # see https://bugs.ruby-lang.org/issues/12990 source = code.encode(encoding) * 5 target = "#{test.first_data[code]}#{test.follow_data[code]*4}".encode(encoding) result = source.__send__(test.method_name, *test.attributes) - assert_equal target, target, + assert_equal target, result, proc{"from #{code*5} (#{source.dump}) expected #{target.dump} but was #{result.dump}"} end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/