mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
26 lines
487 B
Ruby
26 lines
487 B
Ruby
require 'test/unit'
|
|
|
|
$KCODE = 'none'
|
|
|
|
class TestSignal < Test::Unit::TestCase
|
|
def test_signal
|
|
if defined? Process.kill
|
|
$x = 0
|
|
trap "SIGINT", proc{|sig| $x = 2}
|
|
Process.kill "SIGINT", $$
|
|
sleep 0.1
|
|
assert_equal($x, 2)
|
|
|
|
trap "SIGINT", proc{raise "Interrupt"}
|
|
|
|
x = false
|
|
begin
|
|
Process.kill "SIGINT", $$
|
|
sleep 0.1
|
|
rescue
|
|
x = $!
|
|
end
|
|
assert(x && /Interrupt/ =~ x.message)
|
|
end
|
|
end
|
|
end
|