mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8405551e6d
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
547 B
Ruby
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
|