patch-test_ruby_test_process_rb 563 B

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