From ff381ca19bde87981e2c53cab618ae1e771869bf Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 10 Apr 2015 09:45:29 +0000 Subject: * process.c (rb_execarg_parent_start1): Handle EINTR. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50207 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'test/ruby/test_process.rb') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index bcbd7e97d6..28e8f9f5a9 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -574,6 +574,43 @@ class TestProcess < Test::Unit::TestCase } end unless windows? # does not support fifo + def test_execopts_redirect_open_fifo_interrupt_raise + with_tmpchdir {|d| + system("mkfifo fifo") + return if !$?.success? + IO.popen([RUBY, '-e', <<-'EOS']) {|io| + class E < StandardError; end + trap(:USR1) { raise E } + begin + system("cat", :in => "fifo") + rescue E + puts "ok" + end + EOS + sleep 0.1 + Process.kill(:USR1, io.pid) + assert_equal("ok\n", io.read) + } + } + end unless windows? # does not support fifo + + def test_execopts_redirect_open_fifo_interrupt_print + with_tmpchdir {|d| + system("mkfifo fifo") + return if !$?.success? + IO.popen([RUBY, '-e', <<-'EOS']) {|io| + trap(:USR1) { print "trap\n" } + system("cat", :in => "fifo") + EOS + sleep 0.1 + Process.kill(:USR1, io.pid) + sleep 0.1 + File.write("fifo", "ok\n") + assert_equal("trap\nok\n", io.read) + } + } + end unless windows? # does not support fifo + def test_execopts_redirect_pipe with_pipe {|r1, w1| with_pipe {|r2, w2| -- cgit v1.2.3