From ab0fe78f033e92182d41b10a2f46f1a744a5df56 Mon Sep 17 00:00:00 2001 From: hsbt Date: Tue, 26 Aug 2014 03:39:21 +0000 Subject: * test/test_mathn.rb: added workaround for VERBOSE messages. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_mathn.rb | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'test/test_mathn.rb') diff --git a/test/test_mathn.rb b/test/test_mathn.rb index e9a2c4c5ba..bbb88517cf 100644 --- a/test/test_mathn.rb +++ b/test/test_mathn.rb @@ -4,20 +4,22 @@ require_relative 'ruby/envutil' # mathn redefines too much. It must be isolated to child processes. class TestMathn < Test::Unit::TestCase def test_power - assert_in_out_err ['-r', 'mathn', '-e', 'a=1**2;!a'], "", [], [], '[ruby-core:25740]' - assert_in_out_err ['-r', 'mathn', '-e', 'a=(1 << 126)**2;!a'], "", [], [], '[ruby-core:25740]' + stderr = $VERBOSE ? ["lib/mathn.rb is deprecated"] : [] + assert_in_out_err ['-r', 'mathn', '-e', 'a=1**2;!a'], "", [], stderr, '[ruby-core:25740]' + assert_in_out_err ['-r', 'mathn', '-e', 'a=(1 << 126)**2;!a'], "", [], stderr, '[ruby-core:25740]' assert_in_out_err ['-r', 'mathn/complex', '-e', 'a=Complex(0,1)**4;!a'], "", [], [], '[ruby-core:44170]' assert_in_out_err ['-r', 'mathn/complex', '-e', 'a=Complex(0,1)**5;!a'], "", [], [], '[ruby-core:44170]' end def test_quo - assert_in_out_err ['-r', 'mathn'], <<-EOS, %w(OK), [], '[ruby-core:41575]' + stderr = $VERBOSE ? ["lib/mathn.rb is deprecated"] : [] + assert_in_out_err ['-r', 'mathn'], <<-EOS, %w(OK), stderr, '[ruby-core:41575]' 1.quo(2); puts :OK EOS end def test_floor - assert_separately(%w[-rmathn], <<-EOS) + assert_separately(%w[-rmathn], <<-EOS, ignore_stderr: true) assert_equal( 2, ( 13/5).floor) assert_equal( 2, ( 5/2).floor) assert_equal( 2, ( 12/5).floor) @@ -42,7 +44,7 @@ class TestMathn < Test::Unit::TestCase end def test_ceil - assert_separately(%w[-rmathn], <<-EOS) + assert_separately(%w[-rmathn], <<-EOS, ignore_stderr: true) assert_equal( 3, ( 13/5).ceil) assert_equal( 3, ( 5/2).ceil) assert_equal( 3, ( 12/5).ceil) @@ -67,7 +69,7 @@ class TestMathn < Test::Unit::TestCase end def test_truncate - assert_separately(%w[-rmathn], <<-EOS) + assert_separately(%w[-rmathn], <<-EOS, ignore_stderr: true) assert_equal( 2, ( 13/5).truncate) assert_equal( 2, ( 5/2).truncate) assert_equal( 2, ( 12/5).truncate) @@ -92,7 +94,7 @@ class TestMathn < Test::Unit::TestCase end def test_round - assert_separately(%w[-rmathn], <<-EOS) + assert_separately(%w[-rmathn], <<-EOS, ignore_stderr: true) assert_equal( 3, ( 13/5).round) assert_equal( 3, ( 5/2).round) assert_equal( 2, ( 12/5).round) -- cgit v1.2.3