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

Suppress warnings.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-01-18 07:02:58 +00:00
parent 8cf05741bc
commit 8c6e0d3007

View file

@ -1057,7 +1057,7 @@ class TestIO < Test::Unit::TestCase
w.close
end, proc do |r|
assert_equal("", r.gets(0))
assert_equal("foobarbaz", s = r.gets(9))
assert_equal("foobarbaz", r.gets(9))
end)
end
@ -1772,7 +1772,7 @@ End
10.times.map do
Thread.start do
assert_in_out_err([], src) {|stdout, stderr|
assert_no_match(/hi.*hi/, stderr.join)
assert_no_match(/hi.*hi/, stderr.join, bug3585)
}
end
end.each {|th| th.join}
@ -1832,11 +1832,11 @@ End
end
def test_advise
t = make_tempfile
assert_raise(ArgumentError, "no arguments") { t.advise }
tf = make_tempfile
assert_raise(ArgumentError, "no arguments") { tf.advise }
%w{normal random sequential willneed dontneed noreuse}.map(&:to_sym).each do |adv|
[[0,0], [0, 20], [400, 2]].each do |offset, len|
open(make_tempfile.path) do |t|
open(tf.path) do |t|
assert_equal(t.advise(adv, offset, len), nil)
assert_raise(ArgumentError, "superfluous arguments") do
t.advise(adv, offset, len, offset)
@ -1860,10 +1860,10 @@ End
def test_invalid_advise
feature4204 = '[ruby-dev:42887]'
t = make_tempfile
tf = make_tempfile
%w{Normal rand glark will_need zzzzzzzzzzzz \u2609}.map(&:to_sym).each do |adv|
[[0,0], [0, 20], [400, 2]].each do |offset, len|
open(make_tempfile.path) do |t|
open(tf.path) do |t|
assert_raise(NotImplementedError, feature4204) { t.advise(adv, offset, len) }
end
end