mirror of
https://github.com/ruby/ruby.git
synced 2025-09-19 18:43:59 +02:00
* 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:
parent
3ffd8a918f
commit
258716bd9d
3 changed files with 16 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue