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

test_gc.rb: workaround for Windows

* test/ruby/test_gc.rb (test_interrupt_in_finalizer): use inner
  process signal for Windows.  [ruby-core:66825] [Bug #10595]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-12-13 23:46:54 +00:00
parent e50746da00
commit 7c81643953

View file

@ -334,29 +334,21 @@ class TestGc < Test::Unit::TestCase
def test_interrupt_in_finalizer
bug10595 = '[ruby-core:66825] [Bug #10595]'
src = <<-'end;'
pid = $$
Thread.start do
10.times {
sleep 0.1
Process.kill("INT", pid) rescue break
}
sleep 5
Process.kill("KILL", pid) rescue nil
end
f = proc {1000.times {}}
loop do
ObjectSpace.define_finalizer(Object.new, f)
end
end;
error = nil
status = nil
EnvUtil.invoke_ruby(["-e", src], "", false, true) do |_, _, stderr, pid|
10.times {
sleep 0.1
Process.kill("INT", pid) rescue break
}
th = Thread.start do
sleep 5
Process.kill("KILL", pid) rescue nil
end
error = stderr.read
_, status = Process.wait2(pid)
th.kill
end
assert_predicate status, :signaled?
assert_equal "INT", Signal.signame(status.termsig), bug10595
assert_match /Interrupt/, error, bug10595
assert_in_out_err(["-e", src], "", [], /Interrupt/, bug10595)
end
def test_verify_internal_consistency