summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
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