We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416a820 commit ea5f8e1Copy full SHA for ea5f8e1
test/ruby/test_process.rb
@@ -715,6 +715,10 @@ def test_execopts_redirect_open_fifo_interrupt_print
715
sleep 0.2 # wait for the child to stop at opening "fifo"
716
Process.kill(:USR1, io.pid)
717
assert_equal("trap\n", io.readpartial(8))
718
+ sleep 0.2 # wait for the child to return to opening "fifo".
719
+ # On arm64-darwin22, often deadlocks while the child is
720
+ # opening "fifo". Not sure to where "ok" line being written
721
+ # at the next has gone.
722
File.write("fifo", "ok\n")
723
assert_equal("ok\n", io.read)
724
}
0 commit comments