[前][次][番号順一覧][スレッド一覧]

ruby-changes:55548

From: naruse <ko1@a...>
Date: Sat, 27 Apr 2019 11:32:05 +0900 (JST)
Subject: [ruby-changes:55548] naruse:782e487260 (trunk): suppress warning in test/irb

https://git.ruby-lang.org/ruby.git/commit/?id=782e487260

From 782e48726082ee130b6ce27f2a21d33257f09d71 Mon Sep 17 00:00:00 2001
From: naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
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

Re-committing https://github.com/ruby/ruby/commit/7f09b5e9da8f83f84c5b6ae7a644a562811fec73

diff --git a/test/irb/test_context.rb b/test/irb/test_context.rb
index fa2432b..469599c 100644
--- a/test/irb/test_context.rb
+++ b/test/irb/test_context.rb
@@ -55,6 +55,7 @@ module TestIRB https://github.com/ruby/ruby/blob/trunk/test/irb/test_context.rb#L55
     end
 
     def test_eval_input
+      verbose, $VERBOSE = $VERBOSE, nil
       input = TestInputMethod.new([
         "raise 'Foo'\n",
         "_\n",
@@ -71,6 +72,8 @@ module TestIRB https://github.com/ruby/ruby/blob/trunk/test/irb/test_context.rb#L72
                            :*, /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 d3882a4..9d000d5 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' https://github.com/ruby/ruby/blob/trunk/test/irb/test_raise_no_backtrace_exception.rb#L4
 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 v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]