* process.c (rb_fork_internal): call after_fork only unless

chfunc_is_async_signal_safe.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2012-06-10 02:45:38 +00:00
parent 3ffd8a918f
commit 258716bd9d
3 changed files with 16 additions and 1 deletions

View file

@ -1424,4 +1424,13 @@ class TestProcess < Test::Unit::TestCase
assert_nothing_raised { spawn(*TRUECOMMAND, :new_pgroup=>true) }
assert_nothing_raised { IO.popen([*TRUECOMMAND, :new_pgroup=>true]) {} }
end
def test_sigpipe
system(RUBY, "-e", "")
with_pipe {|r, w|
r.close
assert_raise(Errno::EPIPE) { w.print "a" }
}
end
end