1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/thread/terminate_spec.rb
k0kubun c7220bd3de terminate_spec.rb: exclude unstable spec for MinGW
This spec seems to randomly kill mspec worker.
19390874/job/wv1bsm8skd4e1pxl

To make CI stable, let me exclude this for MinGW until we get some logs
that help debugging or resolve that.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-10-10 11:35:58 +00:00

9 lines
219 B
Ruby

require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/exit'
describe "Thread#terminate" do
platform_is_not :mingw do
it_behaves_like :thread_exit, :terminate
end
end