12345678910111213141516 |
- $OpenBSD: patch-test_ruby_test_process_rb,v 1.2 2016/11/19 04:56:00 jeremy Exp $
- Work around pthread fifo fdlock bug.
- --- test/ruby/test_process.rb.orig Fri Nov 11 07:26:06 2016
- +++ test/ruby/test_process.rb Tue Nov 15 07:42:22 2016
- @@ -613,7 +613,7 @@ class TestProcess < Test::Unit::TestCase
- _, v2 = assert_join_threads([t1, t2])
- assert_equal("output to fifo\n", v2)
- }
- - end unless windows? # does not support fifo
- + end if false # pthread fifo fdlock bug
-
- def test_execopts_redirect_open_fifo_interrupt_raise
- with_tmpchdir {|d|
|