1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/ruby/test_signal.rb
nobu 8405551e6d * test/ruby/test_signal.rb (test_signal): restore old trap.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-10-20 02:31:47 +00:00

27 lines
547 B
Ruby

require 'test/unit'
$KCODE = 'none'
class TestSignal < Test::Unit::TestCase
def test_signal
defined?(Process.kill) or return
begin
$x = 0
oldtrap = trap "SIGINT", proc{|sig| $x = 2}
Process.kill "SIGINT", $$
sleep 0.1
assert_equal(2, $x)
trap "SIGINT", proc{raise "Interrupt"}
x = assert_raises(RuntimeError) do
Process.kill "SIGINT", $$
sleep 0.1
end
assert(x)
assert_match(/Interrupt/, x.message)
ensure
trap "SIGINT", oldtrap
end
end
end