1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/ruby: suppress parser warnings

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-02-19 07:48:02 +00:00
parent 311b715483
commit 41f4317f45
31 changed files with 103 additions and 90 deletions

View file

@ -22,8 +22,8 @@ class TestCaseFold < Test::Unit::TestCase
.collect.with_index { |linedata, linenumber| [linenumber.to_i+1, linedata.chomp] }
.reject { |number, data| data =~ /^(#|$)/ }
.collect do |linenumber, linedata|
data, name = linedata.split /#\s*/
code, kind, result, _ = data.split /;\s*/
data, _ = linedata.split(/#\s*/)
code, kind, result, _ = data.split(/;\s*/)
CaseTest.new code.to_i(16).chr('UTF-8'),
result.split(/ /).collect { |hex| hex.to_i(16) }.pack('U*'),
kind, linenumber
@ -81,6 +81,8 @@ class TestCaseFold < Test::Unit::TestCase
"12345#{to_codepoints(target)}67890 and /#{reg}/i do not match " +
"(CaseFolding.txt line #{test[:line]})"
rescue Encoding::UndefinedConversionError
source = source
regexp = regexp
end
end
end