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

* test/ruby/test_signal.rb (test_signal_requiring): skip on Windows.

we can send SIGINT only to pid 0 and the process itself.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-05-19 05:46:57 +00:00
parent d371e3583e
commit 4ae55eb1c0
2 changed files with 6 additions and 0 deletions

View file

@ -198,6 +198,7 @@ class TestSignal < Test::Unit::TestCase
end
def test_signal_requiring
skip "limitation of GenerateConsoleCtrlEvent()" if /mswin|mignw/ =~ RUBY_PLATFORM
t = Tempfile.new(%w"require_ensure_test .rb")
t.puts "sleep"
t.close