ruby-changes:44571
From: usa <ko1@a...>
Date: Mon, 7 Nov 2016 00:35:05 +0900 (JST)
Subject: [ruby-changes:44571] usa:r56644 (trunk): * test/ruby/test_optimization.rb (test_tailcall_interrupted_by_sigint):
usa 2016-11-07 00:35:01 +0900 (Mon, 07 Nov 2016) New Revision: 56644 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56644 Log: * 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. Modified files: trunk/ChangeLog trunk/test/ruby/test_optimization.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 56643) +++ ChangeLog (revision 56644) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Nov 7 00:32:45 2016 NAKAMURA Usaku <usa@r...> + + * 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@r...> * test/ruby/test_optimization.rb (test_tailcall_interrupted_by_sigint): Index: test/ruby/test_optimization.rb =================================================================== --- test/ruby/test_optimization.rb (revision 56643) +++ test/ruby/test_optimization.rb (revision 56644) @@ -357,7 +357,7 @@ EOS https://github.com/ruby/ruby/blob/trunk/test/ruby/test_optimization.rb#L357 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 [](_) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/