mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
suppress warning.
* test/ruby/envutil.rb: suppress warnings. * test/ruby/test_exception.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
36ada1b318
commit
d19e5328d8
2 changed files with 3 additions and 3 deletions
|
@ -206,7 +206,7 @@ module Test
|
||||||
'STDERR.puts('"#{token_dump}"'"START=#{$initial_size = Memory::Status.new.size}")',
|
'STDERR.puts('"#{token_dump}"'"START=#{$initial_size = Memory::Status.new.size}")',
|
||||||
code,
|
code,
|
||||||
].join("\n")
|
].join("\n")
|
||||||
out, err, status = EnvUtil.invoke_ruby(args, cmd, true, true)
|
_, err, status = EnvUtil.invoke_ruby(args, cmd, true, true)
|
||||||
before = err.sub!(/^#{token_re}START=(\d+)\n/, '') && $1.to_i
|
before = err.sub!(/^#{token_re}START=(\d+)\n/, '') && $1.to_i
|
||||||
after = err.sub!(/^#{token_re}FINAL=(\d+)\n/, '') && $1.to_i
|
after = err.sub!(/^#{token_re}FINAL=(\d+)\n/, '') && $1.to_i
|
||||||
assert_equal([true, ""], [status.success?, err], message)
|
assert_equal([true, ""], [status.success?, err], message)
|
||||||
|
|
|
@ -245,7 +245,7 @@ class TestException < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_thread_signal_location
|
def test_thread_signal_location
|
||||||
stdout, stderr, status = EnvUtil.invoke_ruby("-d", <<-RUBY, false, true)
|
_, stderr, _ = EnvUtil.invoke_ruby("-d", <<-RUBY, false, true)
|
||||||
Thread.start do
|
Thread.start do
|
||||||
begin
|
begin
|
||||||
Process.kill(:INT, $$)
|
Process.kill(:INT, $$)
|
||||||
|
@ -400,7 +400,7 @@ end.join
|
||||||
o = Object.new
|
o = Object.new
|
||||||
def o.exception(arg)
|
def o.exception(arg)
|
||||||
end
|
end
|
||||||
RuntimeError.new("a") == o
|
_ = RuntimeError.new("a") == o
|
||||||
EOC
|
EOC
|
||||||
end
|
end
|
||||||
assert_nothing_raised(ArgumentError, bug5865) do
|
assert_nothing_raised(ArgumentError, bug5865) do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue