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

* test/ruby/test_optimization.rb (test_tailcall_interrupted_by_sigint):

ignore on Windows because we cannot handle signaled status of child
  ruby process on this platform.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2016-11-06 15:35:01 +00:00
parent a8206276e1
commit e8ffc63c02
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Mon Nov 7 00:32:45 2016 NAKAMURA Usaku <usa@ruby-lang.org>
* test/ruby/test_optimization.rb (test_tailcall_interrupted_by_sigint):
ignore on Windows because we cannot handle signaled status of child
ruby process on this platform.
Sun Nov 6 23:36:07 2016 Shugo Maeda <shugo@ruby-lang.org>
* test/ruby/test_optimization.rb (test_tailcall_interrupted_by_sigint):

View file

@ -357,7 +357,7 @@ EOS
assert_not_equal(nil, status.termsig, bug12576)
assert_equal("INT", Signal.signame(status.termsig), bug12576)
assert_match(/Interrupt/, err, bug12576)
end
end unless /mswin|mingw/ =~ RUBY_PLATFORM
class Bug10557
def [](_)