Revert r55225

Run test-all before large commit:
"* string.c: Activate full Unicode case mapping for UTF-8 by removing"

This reverts commit 3fb0fcd1e8.
20160531T013303Z.fail.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-05-31 02:56:09 +00:00
parent 3fb0fcd1e8
commit e6ff652ce8
3 changed files with 21 additions and 31 deletions

View file

@ -78,10 +78,10 @@ class TestComprehensiveCaseFold < Test::Unit::TestCase
end
tests = [
CaseTest.new(:downcase, [], downcase),
CaseTest.new(:upcase, [], upcase),
CaseTest.new(:capitalize, [], titlecase, downcase),
# @@@@ TODO: figure out how to test swapcase
CaseTest.new(:downcase, [:lithuanian], downcase),
CaseTest.new(:upcase, [:lithuanian], upcase),
CaseTest.new(:capitalize, [:lithuanian], titlecase, downcase),
# swapcase?????!!!!!
CaseTest.new(:downcase, [:fold], casefold),
CaseTest.new(:upcase, [:turkic], turkic_upcase),
CaseTest.new(:downcase, [:turkic], turkic_downcase),