From 30223e7f68b4af9635acea9c7a6de5bc7656ea2c Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 21 Jul 2015 23:24:02 +0000 Subject: suppress warnings git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_process.rb') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index a87eef677b..68dab2b8ad 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -572,7 +572,7 @@ class TestProcess < Test::Unit::TestCase t2 = Thread.new { IO.popen([*CAT, :in=>"fifo"]) {|f| f.read } } - v1, v2 = assert_join_threads([t1, t2]) + _, v2 = assert_join_threads([t1, t2]) assert_equal("output to fifo\n", v2) } end unless windows? # does not support fifo @@ -2060,7 +2060,7 @@ EOS th.kill th.join(0.1) } - assert_equal(th, x) + assert_equal(th, x, bug11166) end if defined?(fork) def test_exec_fd_3_redirect -- cgit v1.2.3