From 7f09b5e9da8f83f84c5b6ae7a644a562811fec73 Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 21 Apr 2019 05:48:35 +0000 Subject: suppress warning in test/irb https://rubyci.org/logs/rubyci.s3.amazonaws.com/centos7/ruby-trunk/log/20190421T040003Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/irb/test_context.rb | 3 +++ test/irb/test_raise_no_backtrace_exception.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'test/irb') diff --git a/test/irb/test_context.rb b/test/irb/test_context.rb index fa2432b3f3..469599c11b 100644 --- a/test/irb/test_context.rb +++ b/test/irb/test_context.rb @@ -55,6 +55,7 @@ module TestIRB end def test_eval_input + verbose, $VERBOSE = $VERBOSE, nil input = TestInputMethod.new([ "raise 'Foo'\n", "_\n", @@ -71,6 +72,8 @@ module TestIRB :*, /0$/, :*, /0$/, /\s*/], out) + ensure + $VERBOSE = verbose end end end diff --git a/test/irb/test_raise_no_backtrace_exception.rb b/test/irb/test_raise_no_backtrace_exception.rb index d3882a427c..9d000d5d4e 100644 --- a/test/irb/test_raise_no_backtrace_exception.rb +++ b/test/irb/test_raise_no_backtrace_exception.rb @@ -4,7 +4,7 @@ require 'test/unit' module TestIRB class TestRaiseNoBacktraceException < Test::Unit::TestCase def test_raise_exception - status = assert_in_out_err(%w[-rirb -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, []) + status = assert_in_out_err(%w[-rirb -W1 -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, []) e = Exception.new("foo") def e.backtrace; nil; end raise e -- cgit v1.2.3