summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-21 23:24:02 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-21 23:24:02 +0000
commit30223e7f68b4af9635acea9c7a6de5bc7656ea2c (patch)
treef661b04069d2cce835813a3a73caf12cba1f62e8 /test/ruby/test_process.rb
parente4198a73d406d9a9f61a6db2d2a243c0f5267679 (diff)
suppress warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb4
1 files changed, 2 insertions, 2 deletions
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