summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_signal.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/ruby/test_signal.rb b/test/ruby/test_signal.rb
index d212f9fcc3..7a75f57fbe 100644
--- a/test/ruby/test_signal.rb
+++ b/test/ruby/test_signal.rb
@@ -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