mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add a test for [ruby-dev:26128].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8553 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c9d126aec9
commit
5794d80d53
1 changed files with 23 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
require 'test/unit'
|
||||
require 'timeout'
|
||||
|
||||
class TestSignal < Test::Unit::TestCase
|
||||
def test_signal
|
||||
|
@ -22,4 +23,26 @@ class TestSignal < Test::Unit::TestCase
|
|||
trap "SIGINT", oldtrap
|
||||
end
|
||||
end
|
||||
|
||||
def test_exit_action
|
||||
begin
|
||||
r, w = IO.pipe
|
||||
pid = fork {
|
||||
r0, w0 = IO.pipe
|
||||
trap(:USR1, "EXIT")
|
||||
Thread.start { Thread.pass }
|
||||
r0.sysread(4096)
|
||||
}
|
||||
sleep 0.1
|
||||
assert_nothing_raised("[ruby-dev:26128]") {
|
||||
Process.kill(:USR1, pid)
|
||||
Timeout.timeout(1) {
|
||||
Process.waitpid pid
|
||||
}
|
||||
}
|
||||
ensure
|
||||
r.close
|
||||
w.close
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue