1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

confirm that status.termsig is not nil.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2016-11-06 15:33:10 +00:00
parent 90bf4a8edb
commit fd9f38348c

View file

@ -317,7 +317,7 @@ class TestRubyOptimization < Test::Unit::TestCase
end
def test_tailcall_interrupted_by_sigint
bug = 'ruby-core:76327'
bug12576 = 'ruby-core:76327'
script = <<EOS
RubyVM::InstructionSequence.compile_option = {
:tailcall_optimization => true,
@ -354,8 +354,9 @@ EOS
end
end
}
assert_equal("INT", Signal.signame(status.termsig))
assert_match(/Interrupt/, err, bug)
assert_not_equal(nil, status.termsig, bug12576)
assert_equal("INT", Signal.signame(status.termsig), bug12576)
assert_match(/Interrupt/, err, bug12576)
end
class Bug10557